fix: workspace member's last_active should be last_active_time, but not last_login_time (#4906)

This commit is contained in:
DomKing 2024-06-14 20:49:19 +08:00 committed by GitHub
commit 43c19007e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 2 deletions

View file

@ -28,6 +28,7 @@ account_with_role_fields = {
'avatar': fields.String,
'email': fields.String,
'last_login_at': TimestampField,
'last_active_at': TimestampField,
'created_at': TimestampField,
'role': fields.String,
'status': fields.String,