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.
19 lines
397 B
JavaScript
19 lines
397 B
JavaScript
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
var db = require('../database');
|
|
|
|
var async = require('async');
|
|
|
|
module.exports = {
|
|
name: 'Adding theme to active plugins sorted set',
|
|
timestamp: Date.UTC(2015, 11, 23),
|
|
method: function (callback) {
|
|
async.waterfall([
|
|
async.apply(db.getObjectField, 'config', 'theme:id'),
|
|
async.apply(db.sortedSetAdd, 'plugins:active', 0),
|
|
], callback);
|
|
},
|
|
};
|