diff options
Diffstat (limited to 'server/models/oauth-client.js')
-rw-r--r-- | server/models/oauth-client.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/models/oauth-client.js b/server/models/oauth-client.js index 758c4cf2f..021a34007 100644 --- a/server/models/oauth-client.js +++ b/server/models/oauth-client.js | |||
@@ -30,8 +30,8 @@ module.exports = function (sequelize, DataTypes) { | |||
30 | } | 30 | } |
31 | ], | 31 | ], |
32 | classMethods: { | 32 | classMethods: { |
33 | countTotal, | ||
33 | getByIdAndSecret, | 34 | getByIdAndSecret, |
34 | list, | ||
35 | loadFirstClient | 35 | loadFirstClient |
36 | } | 36 | } |
37 | } | 37 | } |
@@ -42,8 +42,8 @@ module.exports = function (sequelize, DataTypes) { | |||
42 | 42 | ||
43 | // --------------------------------------------------------------------------- | 43 | // --------------------------------------------------------------------------- |
44 | 44 | ||
45 | function list (callback) { | 45 | function countTotal (callback) { |
46 | return this.findAll().asCallback(callback) | 46 | return this.count().asCallback(callback) |
47 | } | 47 | } |
48 | 48 | ||
49 | function loadFirstClient (callback) { | 49 | function loadFirstClient (callback) { |