aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/initializers/constants.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts
index 2e9d3956e..fd5bf5868 100644
--- a/server/initializers/constants.ts
+++ b/server/initializers/constants.ts
@@ -55,7 +55,7 @@ const WEBSERVER = {
55 55
56// Sortable columns per schema 56// Sortable columns per schema
57const SORTABLE_COLUMNS = { 57const SORTABLE_COLUMNS = {
58 USERS: [ 'id', 'username', 'videoQuotaUsed', 'createdAt' ], 58 USERS: [ 'id', 'username', 'videoQuotaUsed', 'createdAt', 'lastLoginDate', 'role' ],
59 USER_SUBSCRIPTIONS: [ 'id', 'createdAt' ], 59 USER_SUBSCRIPTIONS: [ 'id', 'createdAt' ],
60 ACCOUNTS: [ 'createdAt' ], 60 ACCOUNTS: [ 'createdAt' ],
61 JOBS: [ 'createdAt' ], 61 JOBS: [ 'createdAt' ],
@@ -78,7 +78,7 @@ const SORTABLE_COLUMNS = {
78 ACCOUNTS_BLOCKLIST: [ 'createdAt' ], 78 ACCOUNTS_BLOCKLIST: [ 'createdAt' ],
79 SERVERS_BLOCKLIST: [ 'createdAt' ], 79 SERVERS_BLOCKLIST: [ 'createdAt' ],
80 80
81 USER_NOTIFICATIONS: [ 'createdAt' ], 81 USER_NOTIFICATIONS: [ 'createdAt', 'read' ],
82 82
83 VIDEO_PLAYLISTS: [ 'displayName', 'createdAt', 'updatedAt' ], 83 VIDEO_PLAYLISTS: [ 'displayName', 'createdAt', 'updatedAt' ],
84 84