Files
NodeBB/src/controllers/admin/rewards.js
Barış Soner Uşaklı 0f234601f1 style changes
2017-06-22 19:03:49 -04:00

20 lines
350 B
JavaScript

'use strict';
var async = require('async');
var rewardsController = module.exports;
rewardsController.get = function (req, res, next) {
async.waterfall([
function (next) {
require('../../rewards/admin').get(next);
},
function (data) {
res.render('admin/extend/rewards', data);
},
], next);
};
module.exports = rewardsController;