diff options
Diffstat (limited to 'server/models/account/user.ts')
-rw-r--r-- | server/models/account/user.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/models/account/user.ts b/server/models/account/user.ts index 00c6d73aa..513455773 100644 --- a/server/models/account/user.ts +++ b/server/models/account/user.ts | |||
@@ -565,6 +565,10 @@ export class UserModel extends Model { | |||
565 | return UserModel.unscoped().findByPk(id) | 565 | return UserModel.unscoped().findByPk(id) |
566 | } | 566 | } |
567 | 567 | ||
568 | static loadByIdFull (id: number): Promise<MUserDefault> { | ||
569 | return UserModel.findByPk(id) | ||
570 | } | ||
571 | |||
568 | static loadByIdWithChannels (id: number, withStats = false): Promise<MUserDefault> { | 572 | static loadByIdWithChannels (id: number, withStats = false): Promise<MUserDefault> { |
569 | const scopes = [ | 573 | const scopes = [ |
570 | ScopeNames.WITH_VIDEOCHANNELS | 574 | ScopeNames.WITH_VIDEOCHANNELS |