From e0fa3861a6f312bf308a6f51e4271c75f096db1e Mon Sep 17 00:00:00 2001 From: zwitschi Date: Mon, 10 Nov 2025 07:59:42 +0100 Subject: [PATCH] feat: complete Authentication & RBAC checklist by finalizing models, migrations, repositories, guard dependencies, and integration tests --- changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.md b/changelog.md index b696dda..34770e7 100644 --- a/changelog.md +++ b/changelog.md @@ -29,3 +29,4 @@ - Added integration tests in `tests/test_authorization_integration.py` verifying anonymous 401 responses, role-based 403s, and authorized project manager flows across API and UI endpoints. - Implemented environment-driven admin bootstrap settings, wired the `bootstrap_admin` helper into FastAPI startup, added pytest coverage for creation/idempotency/reset logic, and documented operational guidance in the RBAC plan and security concept. - Retired the legacy authentication RBAC implementation plan document after migrating its guidance into live documentation and synchronized the contributor instructions to reflect the removal. +- Completed the Authentication & RBAC checklist by shipping the new models, migrations, repositories, guard dependencies, and integration tests.