1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-17 07:41:26 +00:00

show last access time on admin users page (#4795)

Co-authored-by: lian <lian@seafile.com>
This commit is contained in:
lian
2021-01-22 10:41:58 +08:00
committed by GitHub
parent 7994fafd90
commit cbf12f9ed9
4 changed files with 108 additions and 20 deletions

View File

@@ -6,6 +6,7 @@ class SysAdminAdminUser {
this.contact_email = object.contact_email;
this.login_id = object.login_id;
this.last_login = object.last_login;
this.last_access_time = object.last_access_time;
this.create_time = object.create_time;
this.is_active = object.is_active;
this.is_staff = object.is_staff;

View File

@@ -5,6 +5,7 @@ class SysAdminUser {
this.contact_email = object.contact_email;
this.login_id = object.login_id;
this.last_login = object.last_login;
this.last_access_time = object.last_access_time;
this.create_time = object.create_time;
this.is_active = object.is_active;
this.is_staff = object.is_staff;