feat: allowing count to be passed to ./nodebb events

v1.18.x
Julian Lam 6 years ago
parent de04629745
commit f6d3cc0ea4

@ -210,10 +210,10 @@ program
})
.description('List all installed plugins');
program
.command('events')
.description('Outputs the last ten (10) administrative events recorded by NodeBB')
.action(function () {
require('./manage').listEvents();
.command('events [count]')
.description('Outputs the most recent administrative events recorded by NodeBB')
.action(function (count) {
require('./manage').listEvents(count);
});
program
.command('info')

@ -97,10 +97,10 @@ function listPlugins() {
});
}
function listEvents() {
function listEvents(count) {
async.series([
db.init,
events.output,
async.apply(events.output, count),
]);
}

@ -193,9 +193,14 @@ events.deleteAll = function (callback) {
}, { alwaysStartAt: 0 }, callback);
};
events.output = function () {
console.log('\nDisplaying last ten administrative events...'.bold);
events.getEvents('', 0, 9, function (err, events) {
events.output = function (numEvents) {
numEvents = parseInt(numEvents, 10);
if (isNaN(numEvents)) {
numEvents = 10;
}
console.log(('\nDisplaying last ' + numEvents + ' administrative events...').bold);
events.getEvents('', 0, numEvents - 1, function (err, events) {
if (err) {
winston.error('Error fetching events', err);
throw err;

Loading…
Cancel
Save