1.0: API token authentication (bearer token support) #87
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The JSON API (
/api/v1/*) currently only supports cookie-based session auth. For programmatic/CI use, it needs bearer token authentication.Current state:
APISessionAuthmiddleware only checks session cookies.Needed for 1.0:
Authorization: Bearer <token>header in API middlewareThis is essential for any CI/CD integration or scripted deployments via the API.
WONTFIX