define systemd.log_target=console when used with systemd-debug
[plcapi.git] / PLC / Methods / AddRole.py
index c90c4a2..d42858f 100644 (file)
@@ -21,14 +21,12 @@ class AddRole(Method):
 
     returns = Parameter(int, '1 if successful')
 
-    event_type = 'Add'
-    object_type = 'Role'
 
     def call(self, auth, role_id, name):
         role = Role(self.api)
         role['role_id'] = role_id
         role['name'] = name
         role.sync(insert = True)
-       self.object_ids = [role['role_id']]
+        self.event_objects = {'Role': [role['role_id']]}
 
         return 1