Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 16a28469e5
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| {% if auth_user().hasPermission('view.background_jobs') %} | ||
| <li aria-haspopup="false"> | ||
| <a href="{{ route('core.operator.background_jobs') }}"> | ||
| {{ Lang.get('core.background_jobs') }} | ||
| </a> | ||
| </li> | ||
| {% endif %} |
There was a problem hiding this comment.
Include the new system permissions in the Utilities guards
Operators who are granted only one of the new permissions (view.background_jobs, view.system_health, or view.systemupdate) will never see these entries in index.twig: the added links are still nested under the older Utilities/System guards that require view.emaillog|view.emailqueue|view.license|view.operatorlog|view.phpinfo|view.activitylog and then view.phpinfo|view.systemcleanup. In that role configuration the pages exist, but there is no navigation path to them unless the user guesses the URL.
Useful? React with 👍 / 👎.
No description provided.