diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-07 10:39:09 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-05-07 10:39:09 +0200 |
commit | 3cc665f48fd233d09f778d7e887488dde6f03ef6 (patch) | |
tree | ba8503723206ef17f4b8e4a2e40125472b28dbaf /client/src/app | |
parent | ee8e602ef9761b4869e14d4d3ed24a2e18f22c65 (diff) | |
download | PeerTube-3cc665f48fd233d09f778d7e887488dde6f03ef6.tar.gz PeerTube-3cc665f48fd233d09f778d7e887488dde6f03ef6.tar.zst PeerTube-3cc665f48fd233d09f778d7e887488dde6f03ef6.zip |
Add last login date to users
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/shared/users/user.model.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/app/shared/users/user.model.ts b/client/src/app/shared/users/user.model.ts index 3f6743bef..3348fe75f 100644 --- a/client/src/app/shared/users/user.model.ts +++ b/client/src/app/shared/users/user.model.ts | |||
@@ -71,6 +71,8 @@ export class User implements UserServerModel { | |||
71 | 71 | ||
72 | pluginAuth: string | null | 72 | pluginAuth: string | null |
73 | 73 | ||
74 | lastLoginDate: Date | null | ||
75 | |||
74 | createdAt: Date | 76 | createdAt: Date |
75 | 77 | ||
76 | constructor (hash: Partial<UserServerModel>) { | 78 | constructor (hash: Partial<UserServerModel>) { |
@@ -115,6 +117,7 @@ export class User implements UserServerModel { | |||
115 | this.createdAt = hash.createdAt | 117 | this.createdAt = hash.createdAt |
116 | 118 | ||
117 | this.pluginAuth = hash.pluginAuth | 119 | this.pluginAuth = hash.pluginAuth |
120 | this.lastLoginDate = hash.lastLoginDate | ||
118 | 121 | ||
119 | if (hash.account !== undefined) { | 122 | if (hash.account !== undefined) { |
120 | this.account = new Account(hash.account) | 123 | this.account = new Account(hash.account) |