You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix plugin order: SetupPlugin must load before AuthPlugin
AuthPlugin's init() method tries to contribute menu items to the setupNav service,
which is only registered after SetupPlugin's init() runs. The previous order had
AuthPlugin loading first, causing it to silently fail when trying to contribute
navigation items.
Correct order:
1. SetupPlugin (registers setupNav service in init phase)
2. AuthPlugin (contributes to setupNav in init phase)
This ensures the Setup App menu is populated with auth-related items:
- Users
- Organizations
- Teams
- API Keys
- Sessions
Agent-Logs-Url: https://github.com/objectstack-ai/objectui/sessions/07edc3ef-a3a9-4926-bd1a-db0c2513b862
Co-authored-by: xuyushun441-sys <255036401+xuyushun441-sys@users.noreply.github.com>
0 commit comments