1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-18 20:59:43 +02:00
This commit is contained in:
sauls8t 2019-08-15 17:15:39 +01:00
parent 32dbab826d
commit 4f248bf018
5 changed files with 15 additions and 19 deletions

View file

@ -1,15 +1,13 @@
package auth
// CASAuthRequest data received via Keycloak client library
// CASAuthRequest data received via CAS client library
type CASAuthRequest struct {
Ticket string `json:"ticket"`
Ticket string `json:"ticket"`
Domain string `json:"domain"`
}
// CASConfig server configuration
type CASConfig struct {
URL string `json:"url"`
URL string `json:"url"`
RedirectURL string `json"redirectUrl"`
}
}