mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-31 11:52:10 +00:00
add del publickey
This commit is contained in:
parent
8934fe414c
commit
3ca7a33907
2 changed files with 46 additions and 0 deletions
|
@ -77,6 +77,11 @@ func AddPublicKey(key *PublicKey) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func DeletePublicKey(key *PublicKey) error {
|
||||
_, err := orm.Delete(key)
|
||||
return err
|
||||
}
|
||||
|
||||
func ListPublicKey(userId int64) ([]PublicKey, error) {
|
||||
keys := make([]PublicKey, 0)
|
||||
err := orm.Find(&keys, &PublicKey{OwnerId: userId})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue