feat(ui): show user's lastAccess (#3342)

* feat(server): update user's lastAccess

* feat(ui): show user's lastAccess
This commit is contained in:
Deluan Quintão 2024-09-30 20:46:10 -04:00 committed by GitHub
parent 5e8085bf3c
commit a9334b7787
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 148 additions and 11 deletions

View file

@ -97,7 +97,8 @@
"fields": {
"userName": "Username",
"isAdmin": "Is Admin",
"lastLoginAt": "Last Login At",
"lastLoginAt": "Last Login",
"lastAccessAt": "Last Access",
"updatedAt": "Updated at",
"name": "Name",
"password": "Password",

View file

@ -140,7 +140,7 @@ const UserEdit = (props) => {
<BooleanInput source="isAdmin" initialValue={false} />
)}
<DateField variant="body1" source="lastLoginAt" showTime />
{/*<DateField source="lastAccessAt" showTime />*/}
<DateField variant="body1" source="lastAccessAt" showTime />
<DateField variant="body1" source="updatedAt" showTime />
<DateField variant="body1" source="createdAt" showTime />
</SimpleForm>

View file

@ -41,6 +41,7 @@ const UserList = (props) => {
<TextField source="name" />
<BooleanField source="isAdmin" />
<DateField source="lastLoginAt" sortByOrder={'DESC'} />
<DateField source="lastAccessAt" sortByOrder={'DESC'} />
<DateField source="updatedAt" sortByOrder={'DESC'} />
</Datagrid>
)}