prodypanda / MarkEnti

Found warning comments in code JS-0099
Documentation
Minor
6 months ago6 months old
Unexpected 'todo' comment: 'todo!'
193exports.getCategory = async (req, res) => {
194  const { id } = req.params
195  try {
196    //todo!197    //add functionality for the admin to show non activated (hidden) catgories.
198    const category = await Category.findById(id).where('isActive').equals(true)
199    if (!category) {