mirror of
https://github.com/documize/community.git
synced 2025-07-21 06:09:42 +02:00
15 lines
320 B
Go
15 lines
320 B
Go
|
package auth
|
||
|
|
||
|
|
||
|
// CASAuthRequest data received via Keycloak client library
|
||
|
type CASAuthRequest struct {
|
||
|
Ticket string `json:"ticket"`
|
||
|
Domain string `json:"domain"`
|
||
|
}
|
||
|
|
||
|
|
||
|
// CASConfig server configuration
|
||
|
type CASConfig struct {
|
||
|
URL string `json:"url"`
|
||
|
RedirectURL string `json"redirectUrl"`
|
||
|
}
|