aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/shared/sort.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/shared/sort.ts')
-rw-r--r--server/models/shared/sort.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/server/models/shared/sort.ts b/server/models/shared/sort.ts
index a9a093099..d923072f2 100644
--- a/server/models/shared/sort.ts
+++ b/server/models/shared/sort.ts
@@ -44,19 +44,6 @@ function getPlaylistSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]):
44 return getSort(value, lastSort) 44 return getSort(value, lastSort)
45} 45}
46 46
47function getCommentSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
48 const { direction, field } = buildSortDirectionAndField(value)
49
50 if (field === 'totalReplies') {
51 return [
52 [ 'totalReplies', direction ],
53 lastSort
54 ]
55 }
56
57 return getSort(value, lastSort)
58}
59
60function getVideoSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] { 47function getVideoSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
61 const { direction, field } = buildSortDirectionAndField(value) 48 const { direction, field } = buildSortDirectionAndField(value)
62 49
@@ -151,7 +138,6 @@ export {
151 buildSortDirectionAndField, 138 buildSortDirectionAndField,
152 getPlaylistSort, 139 getPlaylistSort,
153 getSort, 140 getSort,
154 getCommentSort,
155 getAdminUsersSort, 141 getAdminUsersSort,
156 getVideoSort, 142 getVideoSort,
157 getBlacklistSort, 143 getBlacklistSort,