add del publickey

This commit is contained in:
Lunny Xiao 2014-03-10 17:15:02 +08:00
parent 8934fe414c
commit 3ca7a33907
2 changed files with 46 additions and 0 deletions

View file

@ -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})