1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 13:39:35 +02:00

Backend: auth for bookmarks and categories

This commit is contained in:
Paweł Malak 2021-11-11 16:43:00 +01:00
parent 22471d64c7
commit 0d36c5cf94
6 changed files with 39 additions and 12 deletions

View file

@ -7,12 +7,15 @@ const Bookmark = require('../../models/Bookmark');
// @route GET /api/categories/:id
// @access Public
const getSingleCategory = asyncWrapper(async (req, res, next) => {
const visibility = req.isAuthenticated ? {} : { isPublic: true };
const category = await Category.findOne({
where: { id: req.params.id },
where: { id: req.params.id, ...visibility },
include: [
{
model: Bookmark,
as: 'bookmarks',
where: visibility,
},
],
});