mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
21 lines
621 B
Go
21 lines
621 B
Go
package settings
|
|
|
|
type Casdoor struct {
|
|
Endpoint string `json:"endpoint" protected:"true"`
|
|
ClientId string `json:"client_id" protected:"true"`
|
|
ClientSecret string `json:"client_secret" protected:"true"`
|
|
Certificate string `json:"certificate" protected:"true"`
|
|
Organization string `json:"organization" protected:"true"`
|
|
Application string `json:"application" protected:"true"`
|
|
RedirectUri string `json:"redirect_uri" protected:"true"`
|
|
}
|
|
|
|
var CasdoorSettings = Casdoor{
|
|
Endpoint: "",
|
|
ClientId: "",
|
|
ClientSecret: "",
|
|
Certificate: "",
|
|
Organization: "",
|
|
Application: "",
|
|
RedirectUri: "",
|
|
}
|