fix: disable User.lastAccessAt field for now.

Updating it on every request was cause DB retentions/lock errors
This commit is contained in:
Deluan
2020-01-28 16:20:59 -05:00
parent d4edff3aaa
commit 3007ca68d5
3 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ const UserEdit = (props) => (
<PasswordInput source="password" validate={[required()]} />
<BooleanInput source="isAdmin" initialValue={false} />
<DateField source="lastLoginAt" showTime />
<DateField source="lastAccessAt" showTime />
{/*<DateField source="lastAccessAt" showTime />*/}
<DateField source="updatedAt" showTime />
<DateField source="createdAt" showTime />
</SimpleForm>