diff options
| author | Ivan Shen <iwshen11@gmail.com> | 2019-03-28 19:38:23 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-28 19:38:23 +0000 |
| commit | 143891d8467bf80209255fd55da1739625583858 (patch) | |
| tree | 568e5fa7c38757ec64943aa4f37143728cba6eb7 /web/models/points.js | |
| parent | a4de620727d4e7d294ced1d1e1c956c0be8c0cd2 (diff) | |
| parent | 3dd064805b0c4930886a99dccc9d4d980e8c15e0 (diff) | |
Merge branch 'qa' into feat/28
Diffstat (limited to 'web/models/points.js')
| -rw-r--r-- | web/models/points.js | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/web/models/points.js b/web/models/points.js index d27f2a7..e8c181e 100644 --- a/web/models/points.js +++ b/web/models/points.js @@ -10,7 +10,8 @@ var JsonSchema = new Schema({ race: String, longhair: Boolean, longbeard: Boolean, - extra: String + extra: String, + status: String }); // Mongoose Model definition @@ -25,6 +26,14 @@ exports.get_points = function(callback) { }); } +exports.get_all_active_points = function(callback) { + var activeStatusTypes = ["new", "pending"]; + Json.find({ status: { $in: activeStatusTypes } }).exec(function(err, docs) { + if (err) callback(err, null); + callback(null, docs); + }); +} + // this function stores A user report into the db exports.save_request = function(data, callback) { Json.create(data, function(err, result) { @@ -32,3 +41,13 @@ exports.save_request = function(data, callback) { callback(null, result); }); } + +exports.update_point_status = function(id, newStatus, callback) { + Json.findByIdAndUpdate(id, {status: newStatus}, {new: true}, + function(err, result) { + if (err) callback(err, null); + // result contains the updated point document + callback(null, result); + } + ); +} |
