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.

31 lines
661 B
JavaScript

"use strict";
var admin = {},
async = require('async'),
plugins = require('../plugins'),
db = require('../database');
admin.save = function(data, callback) {
var order = Object.keys(data),
items = data.map(function(item) {
return JSON.stringify(item);
});
async.waterfall([
function(next) {
db.delete('navigation:enabled', next);
},
function(next) {
db.sortedSetAdd('navigation:enabled', order, items, next);
}
], callback);
};
admin.getAvailable = function(data, callback) {
var core = require('../../install/data/navigation.json');
plugins.fireHook('filter:navigation.available', core, callback);
};
module.exports = admin;