diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-05 09:44:53 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-05-05 13:54:30 +0200 |
commit | 8bb71f2e332726c207318e44b95e784f9740dc40 (patch) | |
tree | ee4c271342efec2593f353fa875ea93add6403f5 /server/models | |
parent | e5c86ba7c2fe5421b0d75943b03282e3f52de270 (diff) | |
download | PeerTube-8bb71f2e332726c207318e44b95e784f9740dc40.tar.gz PeerTube-8bb71f2e332726c207318e44b95e784f9740dc40.tar.zst PeerTube-8bb71f2e332726c207318e44b95e784f9740dc40.zip |
Add auth plugin info in users list
Diffstat (limited to 'server/models')
-rw-r--r-- | server/models/account/user.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/models/account/user.ts b/server/models/account/user.ts index 1bff955df..260c1b28e 100644 --- a/server/models/account/user.ts +++ b/server/models/account/user.ts | |||
@@ -806,7 +806,9 @@ export class UserModel extends Model<UserModel> { | |||
806 | 806 | ||
807 | videoChannels: [], | 807 | videoChannels: [], |
808 | 808 | ||
809 | createdAt: this.createdAt | 809 | createdAt: this.createdAt, |
810 | |||
811 | pluginAuth: this.pluginAuth | ||
810 | } | 812 | } |
811 | 813 | ||
812 | if (parameters.withAdminFlags) { | 814 | if (parameters.withAdminFlags) { |