Add struct for UI auth fallback request

This commit is contained in:
Tulir Asokan 2020-09-12 02:46:25 +03:00
commit a585557b37

View file

@ -69,6 +69,11 @@ type ReqLogin struct {
StoreCredentials bool `json:"-"`
}
type ReqUIAuthFallback struct {
Session string `json:"session"`
User string `json:"user"`
}
type ReqUIAuthLogin struct {
BaseAuthData
User string `json:"user"`