mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	* Delete a user's public key via admin api * Test admin ssh endpoint for creating a new ssh key * Adapt public ssh key test to also test the delete operation * Test that deleting a missing key will result in a 404 * Test that a normal user can't delete another user's ssh key * Make DeletePublicKey return err * Update swagger doc
This commit is contained in:
		| @@ -506,10 +506,7 @@ func deletePublicKeys(e *xorm.Session, keyIDs ...int64) error { | ||||
| func DeletePublicKey(doer *User, id int64) (err error) { | ||||
| 	key, err := GetPublicKeyByID(id) | ||||
| 	if err != nil { | ||||
| 		if IsErrKeyNotExist(err) { | ||||
| 			return nil | ||||
| 		} | ||||
| 		return fmt.Errorf("GetPublicKeyByID: %v", err) | ||||
| 		return err | ||||
| 	} | ||||
|  | ||||
| 	// Check if user has access to delete this key. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user