diff options
Diffstat (limited to 'server/models/abuse/abuse.ts')
-rw-r--r-- | server/models/abuse/abuse.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/server/models/abuse/abuse.ts b/server/models/abuse/abuse.ts index 290270fe2..de249d211 100644 --- a/server/models/abuse/abuse.ts +++ b/server/models/abuse/abuse.ts | |||
@@ -1,4 +1,3 @@ | |||
1 | import * as Bluebird from 'bluebird' | ||
2 | import { invert } from 'lodash' | 1 | import { invert } from 'lodash' |
3 | import { literal, Op, QueryTypes } from 'sequelize' | 2 | import { literal, Op, QueryTypes } from 'sequelize' |
4 | import { | 3 | import { |
@@ -188,7 +187,7 @@ export enum ScopeNames { | |||
188 | } | 187 | } |
189 | ] | 188 | ] |
190 | }) | 189 | }) |
191 | export class AbuseModel extends Model<AbuseModel> { | 190 | export class AbuseModel extends Model { |
192 | 191 | ||
193 | @AllowNull(false) | 192 | @AllowNull(false) |
194 | @Default(null) | 193 | @Default(null) |
@@ -265,7 +264,7 @@ export class AbuseModel extends Model<AbuseModel> { | |||
265 | }) | 264 | }) |
266 | VideoAbuse: VideoAbuseModel | 265 | VideoAbuse: VideoAbuseModel |
267 | 266 | ||
268 | static loadByIdWithReporter (id: number): Bluebird<MAbuseReporter> { | 267 | static loadByIdWithReporter (id: number): Promise<MAbuseReporter> { |
269 | const query = { | 268 | const query = { |
270 | where: { | 269 | where: { |
271 | id | 270 | id |
@@ -281,7 +280,7 @@ export class AbuseModel extends Model<AbuseModel> { | |||
281 | return AbuseModel.findOne(query) | 280 | return AbuseModel.findOne(query) |
282 | } | 281 | } |
283 | 282 | ||
284 | static loadFull (id: number): Bluebird<MAbuseFull> { | 283 | static loadFull (id: number): Promise<MAbuseFull> { |
285 | const query = { | 284 | const query = { |
286 | where: { | 285 | where: { |
287 | id | 286 | id |