diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-09-07 02:17:51 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-09-07 02:17:51 -0400 |
| commit | 694dbdf6ff3eef3e33fcbe95ebd676eea3353dcc (patch) | |
| tree | 91b2cf8a9310005e9bd6d1ff443ef7d593086271 /lib/db/index.js | |
| parent | f5cd692caf98cfeddc61df6442d401619d264aa7 (diff) | |
linking urls
Diffstat (limited to 'lib/db/index.js')
| -rw-r--r-- | lib/db/index.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/db/index.js b/lib/db/index.js index 7452f3d..1ebae57 100644 --- a/lib/db/index.js +++ b/lib/db/index.js @@ -88,14 +88,15 @@ db.getFileSizes = function(ids){ /* COMMENTS */ -db.getCommentsForThread = function (id, limit, offset){ +db.getCommentsForThread = function (id, limit, offset, order){ + order = order || "asc" return Comment.query(function(qb){ - qb.where("thread", "=", id).orderBy("id", "asc") + qb.where("thread", "=", id).orderBy("id", order) if (limit) { - qb = qb.limit(limit) + qb.limit(limit) } if (offset) { - qb = qb.offset(offset) + qb.offset(offset) } }).fetchAll().then(function(comments){ comments.forEach(function(comment){ |
