mirror of
https://github.com/pawelmalak/flame.git
synced 2024-12-22 01:31:30 +03:00
29 lines
696 B
JavaScript
29 lines
696 B
JavaScript
|
const asyncWrapper = require('../../middleware/asyncWrapper');
|
||
|
const Category = require('../../models/Category');
|
||
|
const loadConfig = require('../../utils/loadConfig');
|
||
|
|
||
|
// @desc Create new category
|
||
|
// @route POST /api/categories
|
||
|
// @access Public
|
||
|
const createCategory = asyncWrapper(async (req, res, next) => {
|
||
|
const { pinCategoriesByDefault: pinCategories } = await loadConfig();
|
||
|
|
||
|
let category;
|
||
|
|
||
|
if (pinCategories) {
|
||
|
category = await Category.create({
|
||
|
...req.body,
|
||
|
isPinned: true,
|
||
|
});
|
||
|
} else {
|
||
|
category = await Category.create(req.body);
|
||
|
}
|
||
|
|
||
|
res.status(201).json({
|
||
|
success: true,
|
||
|
data: category,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
module.exports = createCategory;
|