-
Notifications
You must be signed in to change notification settings - Fork 29
feat(admin-panel): integrated admin panel — WIP (docs + v0 core) #4145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
KvizadSaderah
wants to merge
35
commits into
constructorfabric:main
Choose a base branch
from
KvizadSaderah:feat/admin-panel-4144
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
1aa18ab
docs(admin-panel): add PRD, DESIGN, and ADRs for integrated admin panel
KvizadSaderah 7b12d02
feat(admin-panel): add make admin target and two-role dev auth stub
KvizadSaderah dd39605
feat(account-management): add admin-context endpoint for the admin panel
KvizadSaderah 7b10114
feat(admin-panel): scaffold Refine SPA shell with context view
KvizadSaderah 7f689be
fix(admin-panel): seed platform root so tenant views resolve
KvizadSaderah 3919c7b
style(account-management): fix use-ordering in admin handlers mod
KvizadSaderah 7994aba
feat(admin-panel): descriptor-driven resources with CRUD and actions
KvizadSaderah 9e1946a
docs(admin-panel): record v0 resource-discovery implementation status
KvizadSaderah 4f0ac6b
test(admin-panel): e2e for admin-context endpoint
KvizadSaderah 2003891
docs(admin-panel): add web-docs guide and README section
KvizadSaderah 15d5692
feat(admin-panel): add IdP-backed users resource
KvizadSaderah c824c18
feat(admin-panel): add tenant metadata resource
KvizadSaderah cb53fe7
test(admin-panel): add Playwright browser smoke
KvizadSaderah 95879fb
fix(admin-panel): default tenant create form to a valid tenant type
KvizadSaderah a0a7683
feat(admin-panel): tenant hierarchy tree view
KvizadSaderah 2ad8390
feat(admin-panel): add read-only egress upstreams and routes
KvizadSaderah 08cec86
feat(admin-panel): tenant type select + auto-expanded tree root
KvizadSaderah 27ecef4
feat(admin-panel): serve built SPA from disk at /cf/admin
KvizadSaderah 85ef8e1
docs(admin-panel): document prod-serve of SPA at /cf/admin
KvizadSaderah f1bbbb7
docs(admin-panel): record review-driven pivot to generic distributabl…
KvizadSaderah 2c5dddc
feat(admin-panel): derive resource fields from OpenAPI at runtime
KvizadSaderah c8354e4
fix(admin-panel): address types-registry entities by gts_id, not uuid
KvizadSaderah 2f88209
fix(api-gateway): stop admin SPA serving stale/blank after a rebuild
KvizadSaderah d4ba6bc
feat(admin-panel): derive fields from OpenAPI for all named-schema re…
KvizadSaderah 951d81a
docs(admin-panel): resolve discovery transport via concern-split (ADR…
KvizadSaderah 8f960b8
feat(admin-panel): derive CRUD routes from OpenAPI, drop hand-written…
KvizadSaderah dbcac14
fix(admin-panel): render SPA at /cf/admin without a trailing slash
KvizadSaderah 56abc41
fix(admin-panel): stop the /favicon.ico 404 with an inline SVG icon
KvizadSaderah d80863e
feat(admin-panel): move resource registration to declarative JSON config
KvizadSaderah ee2a53a
docs(admin-panel): document the concern-split + JSON registration
KvizadSaderah b5abeb5
chore(api): regenerate OpenAPI spec for admin-context endpoint
KvizadSaderah 46f9776
style(api-gateway): cargo fmt admin SPA header tuple
KvizadSaderah 9e359bd
docs(admin-panel): resolve ADR-0001 placement — monorepo v0, extracti…
KvizadSaderah 7b23f60
fix(admin-panel): match OpenAPI paths structurally so tenant-scoped r…
KvizadSaderah c5e3de4
docs(admin-panel): reconcile ADR/DESIGN/PRD/README with the implement…
KvizadSaderah File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| node_modules/ | ||
| dist/ | ||
| *.local | ||
| .vite/ | ||
| *.tsbuildinfo | ||
| test-results/ | ||
| playwright-report/ | ||
| playwright/.cache/ |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| <!doctype html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <!-- Inline SVG favicon: avoids the browser's default /favicon.ico request, | ||
| which resolves to the origin root (outside /cf/admin) and 404s. --> | ||
| <link | ||
| rel="icon" | ||
| href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='6' fill='%231677ff'/%3E%3Ctext x='16' y='23' font-size='20' text-anchor='middle' fill='white' font-family='sans-serif'%3EA%3C/text%3E%3C/svg%3E" | ||
| /> | ||
| <title>CF/Gears Admin Panel</title> | ||
| </head> | ||
| <body> | ||
| <div id="root"></div> | ||
| <script type="module" src="/src/main.tsx"></script> | ||
| </body> | ||
| </html> |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.