Extend content manager in strapi v5

Hello everyone,

How to customize the Content-manager plugin?

I would like in the content manager of the strapi to display only the data associated with the user for example we have as given: Post (title, content, userId,…) and therefore in the content manager if the role of the user is not not super_admin but another like (author) I only want to display their own data.

I searched this doc a bit but I don’t understand exactly how to use it Plugins extension | Strapi 5 Documentation

Thank you so much

This topic has been created from a Discord post (1289229654032384042) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Look for RBAC

Thanks, I know now, it’s working

<@1046361692046630933> could u provide the documentation about this topic which helped you?

read this documentation Create new Role-Based Access Control (RBAC) conditions | Strapi 5 Documentation

In this doc, you should add your logic in the bootstrap function on src/index.ts(js) , for example mine is like that (image 1) , and after, go to the admin panel / setting/ admin-users/ roles and edit, you can see a setting in the right (image 2), click the setting and you can see your custom filter now

thanks <@1046361692046630933>