aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/utils.js')
-rw-r--r--server/models/utils.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/server/models/utils.js b/server/models/utils.js
deleted file mode 100644
index 49636b3d8..000000000
--- a/server/models/utils.js
+++ /dev/null
@@ -1,25 +0,0 @@
1'use strict'
2
3const utils = {
4 getSort
5}
6
7// Translate for example "-name" to [ 'name', 'DESC' ]
8function getSort (value) {
9 let field
10 let direction
11
12 if (value.substring(0, 1) === '-') {
13 direction = 'DESC'
14 field = value.substring(1)
15 } else {
16 direction = 'ASC'
17 field = value
18 }
19
20 return [ field, direction ]
21}
22
23// ---------------------------------------------------------------------------
24
25module.exports = utils