From d26b5dcbf2b67eeb75a47fc0ba5b5f94bfb28fde Mon Sep 17 00:00:00 2001 From: Pierre Wizla Date: Wed, 4 Dec 2024 11:51:36 +0100 Subject: [PATCH] Update U&P is removable --- docusaurus/docs/dev-docs/plugins/graphql.md | 4 ++++ docusaurus/docs/dev-docs/plugins/users-permissions.md | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docusaurus/docs/dev-docs/plugins/graphql.md b/docusaurus/docs/dev-docs/plugins/graphql.md index 9a997756d5..6ea721dfac 100644 --- a/docusaurus/docs/dev-docs/plugins/graphql.md +++ b/docusaurus/docs/dev-docs/plugins/graphql.md @@ -25,6 +25,10 @@ By default Strapi create [REST endpoints](/dev-docs/api/rest#endpoints) for each The [GraphQL API reference](/dev-docs/api/graphql) describes queries, mutations and parameters you can use to interact with your API using Strapi's GraphQL plugin. ::: +:::caution +If you uninstall the Users & Permissions plugin, the GraphQL plugin should work, but you need to include your header authorization to see the playground. +::: + ## Usage To get started with GraphQL in your application, please install the plugin first. To do that, open your terminal and run the following command: diff --git a/docusaurus/docs/dev-docs/plugins/users-permissions.md b/docusaurus/docs/dev-docs/plugins/users-permissions.md index bf86cf6fe9..1533393270 100644 --- a/docusaurus/docs/dev-docs/plugins/users-permissions.md +++ b/docusaurus/docs/dev-docs/plugins/users-permissions.md @@ -18,7 +18,8 @@ tags: # Users & Permissions plugin -The Users & Permissions plugin provides a full authentication process based on [JSON Web Tokens (JWT)](https://en.wikipedia.org/wiki/JSON_Web_Token) to protect your API, and an access-control list (ACL) strategy that enables you to manage permissions between groups of users. The Users & Permissions plugin is installed by default and can not be uninstalled. +The Users & Permissions plugin provides a full authentication process based on [JSON Web Tokens (JWT)](https://en.wikipedia.org/wiki/JSON_Web_Token) to protect your API, and an access-control list (ACL) strategy that enables you to manage permissions between groups of users. The Users & Permissions plugin is installed by default. + The user guide describes how to use the [Users & Permissions plugin](/user-docs/users-roles-permissions) from the admin panel. The present page is more about the developer-related aspects of using the Users & Permissions plugin.