mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			385 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			385 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package auth
 | |
| 
 | |
| type AuthenticationForm struct {
 | |
| 	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"`
 | |
| }
 |