- support signing XML-RPC methodResponses as well (for GetSliceTicket())
[plcapi.git] / PLC / Methods / AdmDeletePersonKeys.py
index 01d4055..f23a472 100644 (file)
@@ -29,14 +29,18 @@ class AdmDeletePersonKeys(Method):
 
     returns = Parameter(int, '1 if successful')
 
+    object_type = 'Person'
+
     def call(self, auth, person_id_or_email, key_ids):
         # Get account information
         persons = Persons(self.api, [person_id_or_email])
         if not persons:
             raise PLCInvalidArgument, "No such account"
-
         person = persons[0]
 
+        if person['peer_id'] is not None:
+            raise PLCInvalidArgument, "Not a local account"
+
         if 'admin' not in self.caller['roles']:
             if self.caller['person_id'] != person['person_id']:
                 raise PLCPermissionDenied, "Not allowed to update specified account"