mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-03 15:56:22 +00:00
⚡ implement OIDC configuration management with CRUD operations, add admin routes, and enhance error handling
This commit is contained in:
@ -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"}
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user