Restore AppController extension for BC compatibility#464
Merged
dereuromark merged 1 commit intomasterfrom Mar 18, 2026
Merged
Conversation
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #464 +/- ##
============================================
+ Coverage 77.29% 77.30% +0.01%
- Complexity 884 885 +1
============================================
Files 44 44
Lines 3061 3063 +2
============================================
+ Hits 2366 2368 +2
Misses 695 695 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
By default, QueueAppController extends App\Controller\AppController to inherit app authentication, components, and configuration (BC). Set `Queue.standalone` to `true` for an isolated admin that doesn't depend on the host app's AppController setup.
05a1797 to
b57b90b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Provides a dual solution for controller inheritance:
QueueAppControllerextendsApp\Controller\AppController, inheriting app authentication, components, and configurationQueue.standalonetotruefor an isolated admin that skips the app's AppController setupUsage
The layout configuration via
Queue.adminLayoutis preserved in both modes.