mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-04-30 09:28:11 +00:00
26 lines
332 B
Go
26 lines
332 B
Go
package model
|
|
|
|
type UserSearchType int
|
|
|
|
const (
|
|
UserLocal UserSearchType = iota
|
|
UserLDAP
|
|
)
|
|
|
|
type LDAPUser struct {
|
|
DN string
|
|
Groups []string
|
|
}
|
|
|
|
type LocalUser struct {
|
|
Username string
|
|
Password string
|
|
TOTPSecret string
|
|
Attributes UserAttributes
|
|
}
|
|
|
|
type UserSearch struct {
|
|
Username string
|
|
Type UserSearchType
|
|
}
|