]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/models/utils.js
Server: add video abuse support
[github/Chocobozzz/PeerTube.git] / server / models / utils.js
... / ...
CommitLineData
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