mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Rework SSH key management UI to add GPG (#1293)
* Rework SSH key management UI to add GPG * Add more detail to gpg key display * Update CHANGELOG.md * Implement deletion UI * Implement adding gpg UI * Various fixes - Fix duplicate entry in locale - Re-generate hash before verification since they are consumed * Add missing translation * Split template * Catch not found/verified email error
This commit is contained in:
		
				
					committed by
					
						 Lunny Xiao
						Lunny Xiao
					
				
			
			
				
	
			
			
			
						parent
						
							b7da5a6cb7
						
					
				
				
					commit
					8371f94d06
				
			| @@ -163,14 +163,15 @@ func (f *AddOpenIDForm) Validate(ctx *macaron.Context, errs binding.Errors) bind | ||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||
| } | ||||
|  | ||||
| // AddSSHKeyForm form for adding SSH key | ||||
| type AddSSHKeyForm struct { | ||||
| // AddKeyForm form for adding SSH/GPG key | ||||
| type AddKeyForm struct { | ||||
| 	Type    string `binding:"OmitEmpty"` | ||||
| 	Title   string `binding:"Required;MaxSize(50)"` | ||||
| 	Content string `binding:"Required"` | ||||
| } | ||||
|  | ||||
| // Validate validates the fields | ||||
| func (f *AddSSHKeyForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||
| func (f *AddKeyForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user