diff options
Diffstat (limited to 'server/models/user/user.ts')
-rw-r--r-- | server/models/user/user.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/models/user/user.ts b/server/models/user/user.ts index bda95d2f6..e1b933988 100644 --- a/server/models/user/user.ts +++ b/server/models/user/user.ts | |||
@@ -21,7 +21,7 @@ import { | |||
21 | 21 | ||
22 | let User: Sequelize.Model<UserInstance, UserAttributes> | 22 | let User: Sequelize.Model<UserInstance, UserAttributes> |
23 | let isPasswordMatch: UserMethods.IsPasswordMatch | 23 | let isPasswordMatch: UserMethods.IsPasswordMatch |
24 | let toFormatedJSON: UserMethods.ToFormatedJSON | 24 | let toFormattedJSON: UserMethods.ToFormattedJSON |
25 | let isAdmin: UserMethods.IsAdmin | 25 | let isAdmin: UserMethods.IsAdmin |
26 | let countTotal: UserMethods.CountTotal | 26 | let countTotal: UserMethods.CountTotal |
27 | let getByUsername: UserMethods.GetByUsername | 27 | let getByUsername: UserMethods.GetByUsername |
@@ -108,7 +108,7 @@ export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.Da | |||
108 | ] | 108 | ] |
109 | const instanceMethods = [ | 109 | const instanceMethods = [ |
110 | isPasswordMatch, | 110 | isPasswordMatch, |
111 | toFormatedJSON, | 111 | toFormattedJSON, |
112 | isAdmin | 112 | isAdmin |
113 | ] | 113 | ] |
114 | addMethodsToModel(User, classMethods, instanceMethods) | 114 | addMethodsToModel(User, classMethods, instanceMethods) |
@@ -129,7 +129,7 @@ isPasswordMatch = function (this: UserInstance, password: string) { | |||
129 | return comparePassword(password, this.password) | 129 | return comparePassword(password, this.password) |
130 | } | 130 | } |
131 | 131 | ||
132 | toFormatedJSON = function (this: UserInstance) { | 132 | toFormattedJSON = function (this: UserInstance) { |
133 | return { | 133 | return { |
134 | id: this.id, | 134 | id: this.id, |
135 | username: this.username, | 135 | username: this.username, |