(ctx context.Context, eid, userID, keyID int64)
| 41 | } |
| 42 | |
| 43 | func (s *APIKeyService) DisableOwnedAPIKey(ctx context.Context, eid, userID, keyID int64) error { |
| 44 | return model.DisableAPIKeyByCreatorID(eid, userID, keyID) |
| 45 | } |
| 46 | |
| 47 | func (s *APIKeyService) DeleteOwnedAPIKey(ctx context.Context, eid, userID, keyID int64) error { |
| 48 | return model.DeleteAPIKeyByCreatorID(eid, userID, keyID) |
no outgoing calls
no test coverage detected