1
0
Fork 0
mirror of https://github.com/fedstack-org/uaaa.git synced 2026-06-11 19:58:31 +00:00
UAAA - Unified Authentication And Authorization system, made for security, interoperability and extendibility. https://uaaa.fedstack.org
  • TypeScript 62.6%
  • Vue 33%
  • JavaScript 3.3%
  • Dockerfile 0.6%
  • Shell 0.5%
Find a file
张子苏 25c23d00b9
feat: implement complete console admin UI with server API enhancements
Server:
- Add searchQueryValidator with search/disabled filter params
- Add console stats API (GET /console/stats) returning user/app/session/token counts
- Enhance user API with search, single user detail, credential/session/installation endpoints
- Enhance app API with server-side pagination and search
- Keep system config API read-only (list only)

UI:
- Console dashboard with stats cards and quick links
- User management: search, status filter, enable/disable, detail dialog with
  tabs (info/credentials/sessions/installations), claim editing
- App management: server-side pagination, search, enable/disable, reset secret
- System settings: read-only with warning alert
- Navigation: add dashboard link with icons, exact match for dashboard highlight
- Full-width console layout (remove nested VContainer, use fluid)
- Search bars inline in card title rows
- Enhanced usePagination composable with debounced search and filters
- i18n translations for all new console features (zh-Hans + en)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 20:17:01 +08:00
.vscode feat: enhanced uaaa proxy 2025-09-08 16:03:11 +08:00
docker chore: update 2024-09-02 15:34:49 +08:00
docs chore: update docs 2025-11-28 20:53:35 +08:00
example feat: uaaa v0.8.0 2025-09-08 18:24:37 +08:00
local feat: implemented iaaa 2024-09-02 03:12:04 +08:00
packages feat: implement complete console admin UI with server API enhancements 2026-03-06 20:17:01 +08:00
.dockerignore chore: optimize dockerignore 2025-08-25 13:44:08 +08:00
.gitignore chore: update deps 2026-03-05 16:01:27 +08:00
.nvmrc chore: change logo & add unit test to core 2024-10-28 10:01:05 +08:00
.prettierrc.yml feat: init 2024-07-15 22:19:47 +08:00
.yarnrc.yml chore: change logo & add unit test to core 2024-10-28 10:01:05 +08:00
AGENTS.md feat: add AGENTS.md 2026-02-10 13:13:05 +08:00
CLAUDE.md feat: add AGENTS.md 2026-02-10 13:13:05 +08:00
compose.yml feat: enhanced uaaa proxy 2025-09-08 16:03:11 +08:00
Dockerfile feat: enhanced uaaa proxy 2025-09-08 16:03:11 +08:00
LICENSE chore: add LICENSE 2024-10-27 16:52:25 +08:00
package.json chore: update deps 2026-03-05 16:01:27 +08:00
README.md fix: ui redirect with level 0 2025-04-21 11:33:52 +08:00
yarn.lock chore: update nested deps 2026-03-06 15:34:12 +08:00

UAAA

Unified Authentication And Authorization

Sign into security

docs license

Build Images

TAG=latest
docker build . -f ./packages/server/Dockerfile -t git.pku.edu.cn/uaaa/server:"$TAG"
docker build . -f ./packages/ui/Dockerfile -t git.pku.edu.cn/uaaa/ui:"$TAG"

or using docker compose

export TAG=latest && docker compose build && docker compose push