feat(m3): RBAC — atomic perms, groups, users, admin SPA pages
Permission catalogue (services/permissions_seed.py)
- 31 atomic codes across 10 families: user.*, group.*, invitation.*,
test_template.*, scenario_template.*, mission.* (incl.
mission.write_red_fields + mission.write_blue_fields),
detection_level.{read,update}, setting.{read,update}, mitre.sync.
- Default bindings: admin = all 31; redteam = 8 (catalogue read + mission.
{read,create,update,archive,write_red_fields} + detection_level.read);
blueteam = 5 (catalogue read + mission.{read,write_blue_fields} +
detection_level.read).
- Seed runs at boot AND after /setup so a freshly truncated DB (via
/diag/reset) gets the bindings back via the bootstrap path. Idempotent +
additive (never removes a perm from a system group).
Users admin (services/users.py + api/users.py)
- list (q + is_active filter + pagination), get, patch (display_name /
locale / is_active with tri-state sentinel for clear-vs-unset),
soft-delete, set groups.
- Last-admin protection on update (deactivate), delete, and group-strip
(refusing to remove the admin group from the last active admin).
Groups admin (services/groups.py + api/groups.py)
- Full CRUD with system-group protection (no rename, no delete on
admin/redteam/blueteam).
- PUT /groups/{id}/permissions sets the perm list.
- Admin system group's perm set is locked to the full catalogue
(SystemGroupProtected → 409) — preserves the bypass invariant even if a
future refactor moves to perm-based checks.
Permissions read-only (api/permissions.py)
- GET /permissions returns the catalogue (admin or group.read holders).
/diag/reset extension
- After truncate + token mint, the limiter is also reset (limiter.reset())
so the Playwright suite doesn't hit 10/min budgets across spec files.
Guarded by limiter.enabled to no-op in APP_ENV=test.
Rate-limit scope (core/rate_limit.py)
- enabled = APP_ENV in ("prod", "staging"). A staging deployment serves
humans, so it gets the limits too. Dev/test stay unthrottled for
Playwright ergonomics. Spec §6 NF-security is an operator-facing
requirement.
Frontend chrome
- components/RequireAdmin.tsx + ui/Modal.tsx (reusable centered dialog
with accessible name + Escape + backdrop-click).
- Layout.tsx shows Admin nav links only when is_admin === true. Server
remains the arbiter — non-admins hitting /admin/* get redirected to /.
Frontend pages
- pages/AdminUsersPage.tsx, AdminGroupsPage.tsx, AdminInvitationsPage.tsx
with edit modals using TanStack Query mutations + multi-select for perms
grouped by family + copy-once invitation URL display.
- lib/admin.ts: shared types + query keys + groupPermsByFamily helper.
- lib/api.ts: apiPatch / apiPut / apiDelete added.
Playwright config (e2e/playwright.config.ts)
- workers: 1 + fullyParallel: false: spec files share the live Postgres,
so concurrent /diag/reset calls clobber each other. Intra-file order
preserved via test.describe.configure({ mode: 'serial' }).
Testing
- backend/tests/test_rbac.py: 15 integration tests (39 backend total — 1
health + 8 schema + 15 auth + 15 RBAC).
- e2e/tests/m3-rbac.spec.ts: 8 Playwright tests covering DoD §10 #2/#3
(28 e2e total — 8 M0 + 4 M1 + 8 M2 + 8 M3).
- tasks/testing-m3.md.
DoD: make test-api → 39 passed, make e2e → 28 passed. Spec-reviewer pass
applied (admin perm invariant + staging rate-limit scope).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 06:17:07 +02:00
|
|
|
"""Admin endpoints for user management.
|
|
|
|
|
|
|
|
|
|
Note: self-service updates (own display name, locale, password) belong to
|
|
|
|
|
`/auth/*`; this blueprint is admin-only.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
import uuid
|
|
|
|
|
|
|
|
|
|
from flask import Blueprint, jsonify, request
|
|
|
|
|
from pydantic import BaseModel, Field, ValidationError
|
|
|
|
|
|
|
|
|
|
from app.core.auth_decorators import require_auth, require_perm
|
|
|
|
|
from app.services import users as users_svc
|
|
|
|
|
|
|
|
|
|
bp = Blueprint("users", __name__, url_prefix="/users")
|
|
|
|
|
log = logging.getLogger("metamorph.api.users")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _serialize(u: users_svc.UserView) -> dict:
|
|
|
|
|
return {
|
|
|
|
|
"id": str(u.id),
|
|
|
|
|
"email": u.email,
|
|
|
|
|
"display_name": u.display_name,
|
|
|
|
|
"locale": u.locale,
|
|
|
|
|
"is_active": u.is_active,
|
|
|
|
|
"deleted_at": u.deleted_at.isoformat() if u.deleted_at else None,
|
|
|
|
|
"created_at": u.created_at.isoformat(),
|
|
|
|
|
"updated_at": u.updated_at.isoformat(),
|
|
|
|
|
"groups": [{"id": str(gid), "name": name} for gid, name in u.groups],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class UpdateUserPayload(BaseModel):
|
|
|
|
|
# display_name: omitted = no change, null = clear, str = set.
|
|
|
|
|
# Tri-state encoded with a `default-unset` sentinel via model_extra.
|
|
|
|
|
display_name: str | None = None
|
|
|
|
|
locale: str | None = Field(default=None, pattern=r"^[a-z]{2}$")
|
|
|
|
|
is_active: bool | None = None
|
|
|
|
|
|
|
|
|
|
model_config = {"extra": "forbid"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SetGroupsPayload(BaseModel):
|
|
|
|
|
group_ids: list[uuid.UUID]
|
|
|
|
|
|
|
|
|
|
model_config = {"extra": "forbid"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _parse_uuid_or_400(raw: str):
|
|
|
|
|
try:
|
|
|
|
|
return uuid.UUID(raw)
|
|
|
|
|
except ValueError:
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
feat(m6): missions + snapshot CRUD, membership visibility, status state machine
Adds the mission layer that materialises template snapshots, plus the SPA
list / 3-step wizard / detail page.
Backend:
- app/services/missions.py — create_mission snapshots scenarios, tests, MITRE
tags in a 4-query write; list/get apply a non-admin membership filter that
collapses to 404 (no existence leak); status state machine enforces
draft → in_progress → completed → archived with archived as a sink; the
non-admin creator is auto-added as role_hint='red' to retain visibility.
- app/api/missions.py — 8 endpoints (list, get, create, update, add
scenarios, set members, transition, soft-delete) with strict pydantic
schemas. The transition endpoint splits the perm gate manually so
archive requires mission.archive while other targets use mission.update.
- app/api/users.py — new GET /users/roster returning (id, email,
display_name) only, gated by user.read OR mission.create OR
mission.update — lets non-admin wizard users see assignable peers
without exposing the admin /users payload.
- app/api/diag.py — /diag/reset truncates the mission_* tables before the
template tables because the source_*_template_id FKs are ON DELETE SET
NULL, which is cheaper to short-circuit by removing the children first.
Frontend:
- lib/missions.ts — typed client, queryKey factory, status accent map.
- pages/MissionsListPage.tsx — list cards with status accent + filters
(q, client, status).
- pages/MissionsCreatePage.tsx — 3-step wizard (meta → scenarios → members)
with member roster fed by /users/roster.
- pages/MissionDetailPage.tsx — header + transition buttons (legal next
states only) + Tests/Members/Synthesis/Export tabs.
- Routes + nav entry (visible to anyone with mission.read or admin).
Tests:
- backend/tests/test_missions.py — 22 pytest covering snapshot fidelity,
MITRE propagation, membership visibility, transition state machine,
perm gating, member set replace, append scenarios, soft-delete, partial
update, inverted-date rejection.
- e2e/tests/m6-missions.spec.ts — 5 Playwright (snapshot freezing, non-admin
visibility, status transitions + 409, SPA wizard end-to-end, list filter).
Docs:
- CHANGELOG, tasks/testing-m6.md, tasks/lessons.md (snapshot tradeoffs,
membership=404 pattern, /diag/reset order, auto-creator add).
- README + tasks/todo.md updated.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-13 15:07:32 +02:00
|
|
|
@bp.get("/roster")
|
|
|
|
|
@require_auth
|
|
|
|
|
@require_perm("user.read", "mission.create", "mission.update")
|
|
|
|
|
def list_roster():
|
|
|
|
|
"""Minimal user list for mission member assignment.
|
|
|
|
|
|
|
|
|
|
Returns only `id`, `email`, `display_name` of active, non-deleted users.
|
|
|
|
|
Accessible to anyone who can create or update a mission — strictly lighter
|
|
|
|
|
than `GET /users`, which leaks `is_admin` (via groups), `is_active`, and
|
|
|
|
|
group memberships and is therefore reserved to `user.read`.
|
|
|
|
|
"""
|
|
|
|
|
q = request.args.get("q") or None
|
|
|
|
|
rows = users_svc.list_users(q=q, is_active=True, limit=200, offset=0)[0]
|
2026-05-13 15:14:57 +02:00
|
|
|
# Sort by email for predictable rendering and stable e2e selectors.
|
feat(m6): missions + snapshot CRUD, membership visibility, status state machine
Adds the mission layer that materialises template snapshots, plus the SPA
list / 3-step wizard / detail page.
Backend:
- app/services/missions.py — create_mission snapshots scenarios, tests, MITRE
tags in a 4-query write; list/get apply a non-admin membership filter that
collapses to 404 (no existence leak); status state machine enforces
draft → in_progress → completed → archived with archived as a sink; the
non-admin creator is auto-added as role_hint='red' to retain visibility.
- app/api/missions.py — 8 endpoints (list, get, create, update, add
scenarios, set members, transition, soft-delete) with strict pydantic
schemas. The transition endpoint splits the perm gate manually so
archive requires mission.archive while other targets use mission.update.
- app/api/users.py — new GET /users/roster returning (id, email,
display_name) only, gated by user.read OR mission.create OR
mission.update — lets non-admin wizard users see assignable peers
without exposing the admin /users payload.
- app/api/diag.py — /diag/reset truncates the mission_* tables before the
template tables because the source_*_template_id FKs are ON DELETE SET
NULL, which is cheaper to short-circuit by removing the children first.
Frontend:
- lib/missions.ts — typed client, queryKey factory, status accent map.
- pages/MissionsListPage.tsx — list cards with status accent + filters
(q, client, status).
- pages/MissionsCreatePage.tsx — 3-step wizard (meta → scenarios → members)
with member roster fed by /users/roster.
- pages/MissionDetailPage.tsx — header + transition buttons (legal next
states only) + Tests/Members/Synthesis/Export tabs.
- Routes + nav entry (visible to anyone with mission.read or admin).
Tests:
- backend/tests/test_missions.py — 22 pytest covering snapshot fidelity,
MITRE propagation, membership visibility, transition state machine,
perm gating, member set replace, append scenarios, soft-delete, partial
update, inverted-date rejection.
- e2e/tests/m6-missions.spec.ts — 5 Playwright (snapshot freezing, non-admin
visibility, status transitions + 409, SPA wizard end-to-end, list filter).
Docs:
- CHANGELOG, tasks/testing-m6.md, tasks/lessons.md (snapshot tradeoffs,
membership=404 pattern, /diag/reset order, auto-creator add).
- README + tasks/todo.md updated.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-13 15:07:32 +02:00
|
|
|
return jsonify(
|
|
|
|
|
{
|
|
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"id": str(u.id),
|
|
|
|
|
"email": u.email,
|
|
|
|
|
"display_name": u.display_name,
|
|
|
|
|
}
|
2026-05-13 15:14:57 +02:00
|
|
|
for u in sorted(
|
|
|
|
|
(u for u in rows if u.deleted_at is None),
|
|
|
|
|
key=lambda x: x.email,
|
|
|
|
|
)
|
feat(m6): missions + snapshot CRUD, membership visibility, status state machine
Adds the mission layer that materialises template snapshots, plus the SPA
list / 3-step wizard / detail page.
Backend:
- app/services/missions.py — create_mission snapshots scenarios, tests, MITRE
tags in a 4-query write; list/get apply a non-admin membership filter that
collapses to 404 (no existence leak); status state machine enforces
draft → in_progress → completed → archived with archived as a sink; the
non-admin creator is auto-added as role_hint='red' to retain visibility.
- app/api/missions.py — 8 endpoints (list, get, create, update, add
scenarios, set members, transition, soft-delete) with strict pydantic
schemas. The transition endpoint splits the perm gate manually so
archive requires mission.archive while other targets use mission.update.
- app/api/users.py — new GET /users/roster returning (id, email,
display_name) only, gated by user.read OR mission.create OR
mission.update — lets non-admin wizard users see assignable peers
without exposing the admin /users payload.
- app/api/diag.py — /diag/reset truncates the mission_* tables before the
template tables because the source_*_template_id FKs are ON DELETE SET
NULL, which is cheaper to short-circuit by removing the children first.
Frontend:
- lib/missions.ts — typed client, queryKey factory, status accent map.
- pages/MissionsListPage.tsx — list cards with status accent + filters
(q, client, status).
- pages/MissionsCreatePage.tsx — 3-step wizard (meta → scenarios → members)
with member roster fed by /users/roster.
- pages/MissionDetailPage.tsx — header + transition buttons (legal next
states only) + Tests/Members/Synthesis/Export tabs.
- Routes + nav entry (visible to anyone with mission.read or admin).
Tests:
- backend/tests/test_missions.py — 22 pytest covering snapshot fidelity,
MITRE propagation, membership visibility, transition state machine,
perm gating, member set replace, append scenarios, soft-delete, partial
update, inverted-date rejection.
- e2e/tests/m6-missions.spec.ts — 5 Playwright (snapshot freezing, non-admin
visibility, status transitions + 409, SPA wizard end-to-end, list filter).
Docs:
- CHANGELOG, tasks/testing-m6.md, tasks/lessons.md (snapshot tradeoffs,
membership=404 pattern, /diag/reset order, auto-creator add).
- README + tasks/todo.md updated.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-13 15:07:32 +02:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
feat(m3): RBAC — atomic perms, groups, users, admin SPA pages
Permission catalogue (services/permissions_seed.py)
- 31 atomic codes across 10 families: user.*, group.*, invitation.*,
test_template.*, scenario_template.*, mission.* (incl.
mission.write_red_fields + mission.write_blue_fields),
detection_level.{read,update}, setting.{read,update}, mitre.sync.
- Default bindings: admin = all 31; redteam = 8 (catalogue read + mission.
{read,create,update,archive,write_red_fields} + detection_level.read);
blueteam = 5 (catalogue read + mission.{read,write_blue_fields} +
detection_level.read).
- Seed runs at boot AND after /setup so a freshly truncated DB (via
/diag/reset) gets the bindings back via the bootstrap path. Idempotent +
additive (never removes a perm from a system group).
Users admin (services/users.py + api/users.py)
- list (q + is_active filter + pagination), get, patch (display_name /
locale / is_active with tri-state sentinel for clear-vs-unset),
soft-delete, set groups.
- Last-admin protection on update (deactivate), delete, and group-strip
(refusing to remove the admin group from the last active admin).
Groups admin (services/groups.py + api/groups.py)
- Full CRUD with system-group protection (no rename, no delete on
admin/redteam/blueteam).
- PUT /groups/{id}/permissions sets the perm list.
- Admin system group's perm set is locked to the full catalogue
(SystemGroupProtected → 409) — preserves the bypass invariant even if a
future refactor moves to perm-based checks.
Permissions read-only (api/permissions.py)
- GET /permissions returns the catalogue (admin or group.read holders).
/diag/reset extension
- After truncate + token mint, the limiter is also reset (limiter.reset())
so the Playwright suite doesn't hit 10/min budgets across spec files.
Guarded by limiter.enabled to no-op in APP_ENV=test.
Rate-limit scope (core/rate_limit.py)
- enabled = APP_ENV in ("prod", "staging"). A staging deployment serves
humans, so it gets the limits too. Dev/test stay unthrottled for
Playwright ergonomics. Spec §6 NF-security is an operator-facing
requirement.
Frontend chrome
- components/RequireAdmin.tsx + ui/Modal.tsx (reusable centered dialog
with accessible name + Escape + backdrop-click).
- Layout.tsx shows Admin nav links only when is_admin === true. Server
remains the arbiter — non-admins hitting /admin/* get redirected to /.
Frontend pages
- pages/AdminUsersPage.tsx, AdminGroupsPage.tsx, AdminInvitationsPage.tsx
with edit modals using TanStack Query mutations + multi-select for perms
grouped by family + copy-once invitation URL display.
- lib/admin.ts: shared types + query keys + groupPermsByFamily helper.
- lib/api.ts: apiPatch / apiPut / apiDelete added.
Playwright config (e2e/playwright.config.ts)
- workers: 1 + fullyParallel: false: spec files share the live Postgres,
so concurrent /diag/reset calls clobber each other. Intra-file order
preserved via test.describe.configure({ mode: 'serial' }).
Testing
- backend/tests/test_rbac.py: 15 integration tests (39 backend total — 1
health + 8 schema + 15 auth + 15 RBAC).
- e2e/tests/m3-rbac.spec.ts: 8 Playwright tests covering DoD §10 #2/#3
(28 e2e total — 8 M0 + 4 M1 + 8 M2 + 8 M3).
- tasks/testing-m3.md.
DoD: make test-api → 39 passed, make e2e → 28 passed. Spec-reviewer pass
applied (admin perm invariant + staging rate-limit scope).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 06:17:07 +02:00
|
|
|
@bp.get("")
|
|
|
|
|
@require_auth
|
|
|
|
|
@require_perm("user.read")
|
|
|
|
|
def list_users():
|
|
|
|
|
q = request.args.get("q") or None
|
|
|
|
|
is_active_raw = request.args.get("is_active")
|
|
|
|
|
is_active: bool | None
|
|
|
|
|
if is_active_raw is None:
|
|
|
|
|
is_active = None
|
|
|
|
|
elif is_active_raw.lower() in ("true", "1", "yes"):
|
|
|
|
|
is_active = True
|
|
|
|
|
elif is_active_raw.lower() in ("false", "0", "no"):
|
|
|
|
|
is_active = False
|
|
|
|
|
else:
|
|
|
|
|
return jsonify({"error": "invalid_is_active"}), 400
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
limit = int(request.args.get("limit", "50"))
|
|
|
|
|
offset = int(request.args.get("offset", "0"))
|
|
|
|
|
except ValueError:
|
|
|
|
|
return jsonify({"error": "invalid_pagination"}), 400
|
|
|
|
|
limit = max(1, min(limit, 200))
|
|
|
|
|
offset = max(0, offset)
|
|
|
|
|
|
|
|
|
|
rows, total = users_svc.list_users(q=q, is_active=is_active, limit=limit, offset=offset)
|
|
|
|
|
return jsonify(
|
|
|
|
|
{
|
|
|
|
|
"items": [_serialize(u) for u in rows],
|
|
|
|
|
"total": total,
|
|
|
|
|
"limit": limit,
|
|
|
|
|
"offset": offset,
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@bp.get("/<user_id>")
|
|
|
|
|
@require_auth
|
|
|
|
|
@require_perm("user.read")
|
|
|
|
|
def get_user(user_id: str):
|
|
|
|
|
uid = _parse_uuid_or_400(user_id)
|
|
|
|
|
if uid is None:
|
|
|
|
|
return jsonify({"error": "invalid_id"}), 400
|
|
|
|
|
try:
|
|
|
|
|
u = users_svc.get_user(uid)
|
|
|
|
|
except users_svc.UserNotFound:
|
|
|
|
|
return jsonify({"error": "not_found"}), 404
|
|
|
|
|
return jsonify(_serialize(u))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@bp.patch("/<user_id>")
|
|
|
|
|
@require_auth
|
|
|
|
|
@require_perm("user.update")
|
|
|
|
|
def update_user(user_id: str):
|
|
|
|
|
uid = _parse_uuid_or_400(user_id)
|
|
|
|
|
if uid is None:
|
|
|
|
|
return jsonify({"error": "invalid_id"}), 400
|
|
|
|
|
raw = request.get_json(silent=True) or {}
|
|
|
|
|
try:
|
|
|
|
|
payload = UpdateUserPayload.model_validate(raw)
|
|
|
|
|
except ValidationError as e:
|
|
|
|
|
return jsonify({"error": "invalid_request", "details": e.errors()}), 400
|
|
|
|
|
|
|
|
|
|
# Distinguish "key absent" (no change) from "key=null" (clear) for display_name.
|
|
|
|
|
display_name_unset = "display_name" not in raw
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
u = users_svc.update_user(
|
|
|
|
|
uid,
|
|
|
|
|
display_name=... if display_name_unset else payload.display_name,
|
|
|
|
|
locale=payload.locale,
|
|
|
|
|
is_active=payload.is_active,
|
|
|
|
|
)
|
|
|
|
|
except users_svc.UserNotFound:
|
|
|
|
|
return jsonify({"error": "not_found"}), 404
|
|
|
|
|
except users_svc.LastAdminProtected as e:
|
|
|
|
|
return jsonify({"error": "last_admin_protected", "message": str(e)}), 409
|
|
|
|
|
log.info(
|
|
|
|
|
"metamorph.user.updated",
|
|
|
|
|
extra={
|
|
|
|
|
"user_id": str(uid),
|
|
|
|
|
"fields": sorted(raw.keys()),
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
return jsonify(_serialize(u))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@bp.delete("/<user_id>")
|
|
|
|
|
@require_auth
|
|
|
|
|
@require_perm("user.delete")
|
|
|
|
|
def soft_delete(user_id: str):
|
|
|
|
|
uid = _parse_uuid_or_400(user_id)
|
|
|
|
|
if uid is None:
|
|
|
|
|
return jsonify({"error": "invalid_id"}), 400
|
|
|
|
|
try:
|
|
|
|
|
users_svc.soft_delete_user(uid)
|
|
|
|
|
except users_svc.UserNotFound:
|
|
|
|
|
return jsonify({"error": "not_found"}), 404
|
|
|
|
|
except users_svc.LastAdminProtected as e:
|
|
|
|
|
return jsonify({"error": "last_admin_protected", "message": str(e)}), 409
|
|
|
|
|
log.info("metamorph.user.soft_deleted", extra={"user_id": str(uid)})
|
|
|
|
|
return jsonify({"ok": True})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@bp.put("/<user_id>/groups")
|
|
|
|
|
@require_auth
|
|
|
|
|
@require_perm("user.update")
|
|
|
|
|
def set_groups(user_id: str):
|
|
|
|
|
uid = _parse_uuid_or_400(user_id)
|
|
|
|
|
if uid is None:
|
|
|
|
|
return jsonify({"error": "invalid_id"}), 400
|
|
|
|
|
try:
|
|
|
|
|
payload = SetGroupsPayload.model_validate(request.get_json(silent=True) or {})
|
|
|
|
|
except ValidationError as e:
|
|
|
|
|
return jsonify({"error": "invalid_request", "details": e.errors()}), 400
|
|
|
|
|
try:
|
|
|
|
|
u = users_svc.set_user_groups(uid, payload.group_ids)
|
|
|
|
|
except users_svc.UserNotFound:
|
|
|
|
|
return jsonify({"error": "not_found"}), 404
|
|
|
|
|
except users_svc.LastAdminProtected as e:
|
|
|
|
|
return jsonify({"error": "last_admin_protected", "message": str(e)}), 409
|
|
|
|
|
except ValueError as e:
|
|
|
|
|
return jsonify({"error": "invalid_request", "message": str(e)}), 400
|
|
|
|
|
log.info(
|
|
|
|
|
"metamorph.user.groups_set",
|
|
|
|
|
extra={"user_id": str(uid), "groups": [str(g) for g in payload.group_ids]},
|
|
|
|
|
)
|
|
|
|
|
return jsonify(_serialize(u))
|