diff --git a/src/My.php b/src/My.php index d64d179..5add6b7 100644 --- a/src/My.php +++ b/src/My.php @@ -26,9 +26,8 @@ class My extends MyPlugin protected static function checkCustomContext(int $context): ?bool { return match ($context) { - // Allow BACKEND and MANAGE and MENU to also content admin - self::BACKEND, self::MANAGE, self::MENU => App::task()->checkContext('BACKEND') - && App::blog()->isDefined() + // Add content admin perm to backend + self::MANAGE, self::MENU => App::task()->checkContext('BACKEND') && App::auth()->check(App::auth()->makePermissions([ App::auth()::PERMISSION_CONTENT_ADMIN, ]), App::blog()->id()),