mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
13 lines
296 B
Go
13 lines
296 B
Go
package auth
|
|
|
|
// CASAuthRequest data received via CAS 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"`
|
|
}
|