1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-12 00:34:20 -04:00
gitea/modules/auth/authentication.go
2014-05-05 16:40:25 +08:00

16 lines
455 B
Go

package auth
type AuthenticationForm struct {
Id int64 `form:"id"`
Type int `form:"type"`
Name string `form:"name" binding:"MaxSize(50)"`
Domain string `form:"domain"`
Host string `form:"host"`
Port int `form:"port"`
BaseDN string `form:"base_dn"`
Attributes string `form:"attributes"`
Filter string `form:"filter"`
MsAdSA string `form:"ms_ad_sa"`
IsActived bool `form:"is_actived"`
}