mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-05 16:56:22 +00:00
⚡ implement OIDC configuration management with CRUD operations, add admin routes, and enhance error handling
This commit is contained in:
12
internal/dto/console.go
Normal file
12
internal/dto/console.go
Normal file
@ -0,0 +1,12 @@
|
||||
package dto
|
||||
|
||||
type AdminOidcConfigDto struct {
|
||||
ID uint `json:"id"`
|
||||
Name string `json:"name"`
|
||||
ClientID string `json:"client_id"`
|
||||
ClientSecret string `json:"client_secret"`
|
||||
DisplayName string `json:"display_name"`
|
||||
Icon string `json:"icon"`
|
||||
OidcDiscoveryUrl string `json:"oidc_discovery_url"`
|
||||
Enabled bool `json:"enabled"`
|
||||
}
|
Reference in New Issue
Block a user