]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/utils.js
Server: make a basic "quick and dirty update" for videos
[github/Chocobozzz/PeerTube.git] / server / models / utils.js
CommitLineData
5c39adb7
C
1'use strict'
2
5c39adb7 3const utils = {
feb4bdfd 4 getSort
5c39adb7
C
5}
6
feb4bdfd
C
7// Translate for example "-name" to [ 'name', 'DESC' ]
8function getSort (value) {
9 let field
10 let direction
5c39adb7 11
feb4bdfd
C
12 if (value.substring(0, 1) === '-') {
13 direction = 'DESC'
14 field = value.substring(1)
15 } else {
16 direction = 'ASC'
17 field = value
18 }
5c39adb7 19
feb4bdfd 20 return [ field, direction ]
5c39adb7
C
21}
22
23// ---------------------------------------------------------------------------
24
25module.exports = utils