mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-30 02:25:55 +01:00
29 lines
733 B
JavaScript
29 lines
733 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
const categories = require('../categories');
|
||
|
|
const events = require('../events');
|
||
|
|
|
||
|
|
const categoriesAPI = module.exports;
|
||
|
|
|
||
|
|
categoriesAPI.create = async function (caller, data) {
|
||
|
|
const response = await categories.create(data);
|
||
|
|
const categoryObjs = await categories.getCategories([response.cid], caller.uid);
|
||
|
|
return categoryObjs[0];
|
||
|
|
};
|
||
|
|
|
||
|
|
categoriesAPI.update = async function (caller, data) {
|
||
|
|
await categories.update(data);
|
||
|
|
};
|
||
|
|
|
||
|
|
categoriesAPI.delete = async function (caller, data) {
|
||
|
|
const name = await categories.getCategoryField(data.cid, 'name');
|
||
|
|
await categories.purge(data.cid, caller.uid);
|
||
|
|
await events.log({
|
||
|
|
type: 'category-purge',
|
||
|
|
uid: caller.uid,
|
||
|
|
ip: caller.ip,
|
||
|
|
cid: data.cid,
|
||
|
|
name: name,
|
||
|
|
});
|
||
|
|
};
|