diff options
author | Chocobozzz <me@florianbigard.com> | 2019-11-29 11:16:43 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-11-29 11:16:43 +0100 |
commit | cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716 (patch) | |
tree | fbfcb2b23b78a7dc464df22c166bee34b5b8bcb0 /server/initializers | |
parent | 97ecddae104f4013d261f0e9645e8b319ff0f1a6 (diff) | |
download | PeerTube-cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716.tar.gz PeerTube-cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716.tar.zst PeerTube-cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716.zip |
Add more filters to admin follows table
Diffstat (limited to 'server/initializers')
-rw-r--r-- | server/initializers/constants.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index eaad84bee..a1538f3ca 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -49,8 +49,8 @@ const SORTABLE_COLUMNS = { | |||
49 | VIDEO_COMMENT_THREADS: [ 'createdAt' ], | 49 | VIDEO_COMMENT_THREADS: [ 'createdAt' ], |
50 | VIDEO_RATES: [ 'createdAt' ], | 50 | VIDEO_RATES: [ 'createdAt' ], |
51 | BLACKLISTS: [ 'id', 'name', 'duration', 'views', 'likes', 'dislikes', 'uuid', 'createdAt' ], | 51 | BLACKLISTS: [ 'id', 'name', 'duration', 'views', 'likes', 'dislikes', 'uuid', 'createdAt' ], |
52 | FOLLOWERS: [ 'createdAt' ], | 52 | FOLLOWERS: [ 'createdAt', 'state', 'score' ], |
53 | FOLLOWING: [ 'createdAt' ], | 53 | FOLLOWING: [ 'createdAt', 'redundancyAllowed', 'state' ], |
54 | 54 | ||
55 | VIDEOS: [ 'name', 'duration', 'createdAt', 'publishedAt', 'views', 'likes', 'trending' ], | 55 | VIDEOS: [ 'name', 'duration', 'createdAt', 'publishedAt', 'views', 'likes', 'trending' ], |
56 | 56 | ||