Files
NodeBB/src/controllers/admin/widgets.js

17 lines
312 B
JavaScript
Raw Normal View History

2015-09-17 16:25:15 -04:00
'use strict';
2017-06-22 19:03:49 -04:00
var async = require('async');
2015-09-17 16:25:15 -04:00
2017-06-22 19:03:49 -04:00
var widgetsController = module.exports;
2015-09-17 16:25:15 -04:00
2017-06-22 19:03:49 -04:00
widgetsController.get = function (req, res, next) {
async.waterfall([
function (next) {
require('../../widgets/admin').get(next);
},
function (data) {
res.render('admin/extend/widgets', data);
},
], next);
2015-09-17 16:25:15 -04:00
};