mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-06 15:08:12 +02:00
fully completed #4658
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
var async = require('async');
|
||||
var async = require('async'),
|
||||
json2csv = require('json-2-csv').json2csv;
|
||||
|
||||
var meta = require('../../meta'),
|
||||
analytics = require('../../analytics');
|
||||
@@ -9,12 +10,21 @@ var errorsController = {};
|
||||
|
||||
errorsController.get = function(req, res) {
|
||||
async.parallel({
|
||||
'not-found': async.apply(meta.errors.get),
|
||||
'not-found': async.apply(meta.errors.get, true),
|
||||
analytics: async.apply(analytics.getErrorAnalytics)
|
||||
}, function(err, data) {
|
||||
res.render('admin/advanced/errors', data);
|
||||
});
|
||||
};
|
||||
|
||||
errorsController.export = function(req, res) {
|
||||
async.waterfall([
|
||||
async.apply(meta.errors.get, false),
|
||||
async.apply(json2csv)
|
||||
], function(err, csv) {
|
||||
res.set('Content-Type', 'text/csv').set('Content-Disposition', 'attachment; filename="404.csv"').send(csv);
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
module.exports = errorsController;
|
||||
Reference in New Issue
Block a user