strapi-plugin-comments icon indicating copy to clipboard operation
strapi-plugin-comments copied to clipboard

Unable to Approve comment from admin panel

Open cyp3rius opened this issue 11 months ago • 0 comments

Discussed in https://github.com/VirtusLab-Open-Source/strapi-plugin-comments/discussions/245

Originally posted by hassan-debug January 31, 2024 I just install comment plugin and here is my confin/plugin.js

module.exports = ({ env }) => ({
  comments: {
    enabled: true,
    enabledCollections: ['api::post.post'],
    config: {
      badWords: false,
      moderatorRoles: ['Authenticated'],
      approvalFlow: ['api::post.post'],
      entryLabel: {
        '*': ['Title', 'title', 'Name', 'name', 'Subject', 'subject'],
        'api::page.page': ['MyField']
      },
      blockedAuthorProps: ['name', 'email'],
      reportReasons: {
        MY_CUSTOM_REASON: 'MY_CUSTOM_REASON'
      }
    }
  }
});

i posted comments from comment api here is the list Screenshot 2024-01-31 at 4 24 04 pm

but when i open a comment there is no option to approve a comment or delete users comment (i am loggedin as super admin) Screenshot 2024-01-31 at 4 27 12 pm

cyp3rius avatar Mar 01 '24 13:03 cyp3rius