mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-02 13:03:35 +00:00
feat: show user summary on /admin/users
- Displays metrics like last active at, last login along with the avatar. - Adds new column `last_login_at` to users table. - Updates translations for the same
This commit is contained in:
@@ -125,6 +125,7 @@ CREATE TABLE users (
|
||||
reset_password_token_expiry TIMESTAMPTZ NULL,
|
||||
availability_status user_availability_status DEFAULT 'offline' NOT NULL,
|
||||
last_active_at TIMESTAMPTZ NULL,
|
||||
last_login_at TIMESTAMPTZ NULL,
|
||||
reassign_replies BOOL DEFAULT FALSE NOT NULL,
|
||||
CONSTRAINT constraint_users_on_country CHECK (LENGTH(country) <= 140),
|
||||
CONSTRAINT constraint_users_on_phone_number CHECK (LENGTH(phone_number) <= 20),
|
||||
|
||||
Reference in New Issue
Block a user