Context
Pre-existing bug in the web admin code, surfaced during PR #2517 review.
Problem
web/admin/src/lib/layers/orgConfigParse.ts:18 defines VALID_ROLES as ["fullsend", "triage", "coder", "review"] but Go's ValidRoles() includes 8 roles: fullsend, triage, coder, review, fix, retro, prioritize, e2e. This means the UI rejects configs that the backend accepts.
Fix
Update VALID_ROLES to match Go's ValidRoles().
References
Context
Pre-existing bug in the web admin code, surfaced during PR #2517 review.
Problem
web/admin/src/lib/layers/orgConfigParse.ts:18definesVALID_ROLESas["fullsend", "triage", "coder", "review"]but Go'sValidRoles()includes 8 roles: fullsend, triage, coder, review, fix, retro, prioritize, e2e. This means the UI rejects configs that the backend accepts.Fix
Update
VALID_ROLESto match Go'sValidRoles().References