mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Add ability to set multiple redirect URIs in OAuth application UI (#25072)
OAuth applications can already have multiple redirect URIs if created/edited over API. This change allows for setting multiple redirect URIs through the UI as a comma-separated list (e. g. `https://example.org/redirect,https://redirect.example.org`) <details> <summary>Screenshots</summary>   </details> Closes #25068
This commit is contained in:
		@@ -398,7 +398,7 @@ func (f *NewAccessTokenForm) GetScope() (auth_model.AccessTokenScope, error) {
 | 
			
		||||
// EditOAuth2ApplicationForm form for editing oauth2 applications
 | 
			
		||||
type EditOAuth2ApplicationForm struct {
 | 
			
		||||
	Name               string `binding:"Required;MaxSize(255)" form:"application_name"`
 | 
			
		||||
	RedirectURI        string `binding:"Required" form:"redirect_uri"`
 | 
			
		||||
	RedirectURIs       string `binding:"Required" form:"redirect_uris"`
 | 
			
		||||
	ConfidentialClient bool   `form:"confidential_client"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user