implement OIDC configuration management with CRUD operations, add admin routes, and enhance error handling

This commit is contained in:
2025-07-23 03:32:00 +08:00
parent 562b9bd17f
commit 58c370ec65
19 changed files with 523 additions and 73 deletions

View File

@ -27,6 +27,7 @@ var (
ErrConflict = &ServiceError{Code: http.StatusConflict, Message: "resource conflict"}
ErrInternalServer = &ServiceError{Code: http.StatusInternalServerError, Message: "internal server error"}
ErrBadRequest = &ServiceError{Code: http.StatusBadRequest, Message: "invalid request parameters"}
ErrUnauthorized = &ServiceError{Code: http.StatusUnauthorized, Message: "unauthorized access"}
ErrForbidden = &ServiceError{Code: http.StatusForbidden, Message: "access forbidden"}
)