diff options
Diffstat (limited to 'server/models/user.js')
-rw-r--r-- | server/models/user.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/models/user.js b/server/models/user.js index db6f1765b..c2c8807f0 100644 --- a/server/models/user.js +++ b/server/models/user.js | |||
@@ -28,6 +28,7 @@ UserSchema.methods = { | |||
28 | UserSchema.statics = { | 28 | UserSchema.statics = { |
29 | countTotal: countTotal, | 29 | countTotal: countTotal, |
30 | getByUsername: getByUsername, | 30 | getByUsername: getByUsername, |
31 | list: list, | ||
31 | listForApi: listForApi, | 32 | listForApi: listForApi, |
32 | loadById: loadById, | 33 | loadById: loadById, |
33 | loadByUsername: loadByUsername | 34 | loadByUsername: loadByUsername |
@@ -71,6 +72,10 @@ function getByUsername (username) { | |||
71 | return this.findOne({ username: username }) | 72 | return this.findOne({ username: username }) |
72 | } | 73 | } |
73 | 74 | ||
75 | function list (callback) { | ||
76 | return this.find(callback) | ||
77 | } | ||
78 | |||
74 | function listForApi (start, count, sort, callback) { | 79 | function listForApi (start, count, sort, callback) { |
75 | const query = {} | 80 | const query = {} |
76 | return modelUtils.listForApiWithCount.call(this, query, start, count, sort, callback) | 81 | return modelUtils.listForApiWithCount.call(this, query, start, count, sort, callback) |