Web: Add operations dashboard shell#106
Merged
kennethmyhra merged 1 commit intoMay 28, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a feature-flagged operations dashboard shell for Ignis.Web under the admin surface, with placeholder console/log content pending real streaming in a follow-up.
Changes:
- Registers
/admin/operationsand adds an operations feature config gated by admin/auth plusIGNIS_WEB_FEATURES_OPERATIONS. - Adds localized operations page strings and renders a Ratio UI console-based placeholder dashboard.
- Updates web configuration docs, example env, Helm values comments, and bumps Ratio UI to support the console component.
Reviewed changes
Copilot reviewed 9 out of 11 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
src/Ignis.Web/package.json |
Bumps @eventuras/ratio-ui for new UI exports. |
src/Ignis.Web/package-lock.json |
Locks the updated Ratio UI dependency. |
src/Ignis.Web/app/routes.ts |
Registers the operations admin route. |
src/Ignis.Web/app/i18n/messages/en.json |
Adds English operations dashboard messages. |
src/Ignis.Web/app/i18n/messages/nb.json |
Adds Norwegian operations dashboard messages. |
src/Ignis.Web/app/features/operations/routes/index.tsx |
Adds the gated operations page shell and placeholder console entries. |
src/Ignis.Web/app/features/operations/config.server.ts |
Adds the operations feature flag configuration. |
src/Ignis.Web/.env.example |
Documents the new operations feature flag in the sample env. |
infra/helm/charts/app/values.yaml |
Adds the operations flag to the example secret keys comment. |
docs/server/web-configuration.md |
Documents the new operations feature flag. |
.gitignore |
Ignores local datasets/ import data. |
Files not reviewed (1)
- src/Ignis.Web/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
e96c266 to
3c3e4c2
Compare
Stub admin route at /admin/operations that renders a ratio-ui Console with hardcoded events covering info/debug/success/warning/ error levels. Real SSE-backed wiring to the operations hub lands in a follow-up. Gated by IGNIS_WEB_FEATURES_OPERATIONS (default off), which chains on the existing admin and auth feature flags. The page requires the operations.read scope.
3c3e4c2 to
24c51f0
Compare
kennethmyhra
approved these changes
May 28, 2026
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.
Introduce a new admin operations page with a placeholder log stream. Feature access is gated by the operation.read flag, and requires admin and auth features switched on. Follow-up PRs will implement real event streaming.