Skip to content

Commit

Permalink
Don't allow admins to manage sites
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed May 22, 2024
1 parent 9927272 commit 4eabc2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/admin/graphql/resource.php
Original file line number Diff line number Diff line change
Expand Up @@ -492,23 +492,23 @@
* @param array List of user group names
* @since 2022.10
*/
'delete' => ['admin', 'super'],
'delete' => ['super'],

/** admin/graphql/resource/locale/site/save
* List of user groups that are allowed to create and update locale site items
*
* @param array List of user group names
* @since 2022.10
*/
'save' => ['admin', 'super'],
'save' => ['super'],

/** admin/graphql/resource/locale/site/get
* List of user groups that are allowed to retrieve locale site items
*
* @param array List of user group names
* @since 2022.10
*/
'get' => ['admin', 'super'],
'get' => ['super'],
],
'language' => [
/** admin/graphql/resource/locale/language/delete
Expand Down

0 comments on commit 4eabc2b

Please sign in to comment.