You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
357 B
JavaScript

'use strict';
var async = require('async');
var social = require('../../social');
var socialController = module.exports;
socialController.get = function (req, res, next) {
async.waterfall([
function (next) {
social.getPostSharing(next);
},
function (posts) {
res.render('admin/general/social', {
posts: posts,
});
},
], next);
};