diff options
-rw-r--r-- | ipalib/plugins/delegation.py | 14 | ||||
-rw-r--r-- | ipalib/plugins/selfservice.py | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/ipalib/plugins/delegation.py b/ipalib/plugins/delegation.py index de39a8500..b9fc7f146 100644 --- a/ipalib/plugins/delegation.py +++ b/ipalib/plugins/delegation.py @@ -86,6 +86,9 @@ class delegation(Object): Delegation object. """ + bindable = False + object_name = 'delegation', + object_name_plural = 'delegation', label = _('Delegation') takes_params = ( @@ -118,6 +121,17 @@ class delegation(Object): ), ) + def __json__(self): + json_friendly_attributes = ( + 'label', 'takes_params', 'bindable', 'name', + 'object_name', 'object_name_plural', + ) + json_dict = dict( + (a, getattr(self, a)) for a in json_friendly_attributes + ) + json_dict['methods'] = [m for m in self.methods] + return json_dict + api.register(delegation) diff --git a/ipalib/plugins/selfservice.py b/ipalib/plugins/selfservice.py index 6d34715ad..63c40f681 100644 --- a/ipalib/plugins/selfservice.py +++ b/ipalib/plugins/selfservice.py @@ -67,6 +67,9 @@ class selfservice(Object): Selfservice object. """ + bindable = False + object_name = 'selfservice', + object_name_plural = 'selfservice', label = _('Permissions') takes_params = ( @@ -89,6 +92,17 @@ class selfservice(Object): ), ) + def __json__(self): + json_friendly_attributes = ( + 'label', 'takes_params', 'bindable', 'name', + 'object_name', 'object_name_plural', + ) + json_dict = dict( + (a, getattr(self, a)) for a in json_friendly_attributes + ) + json_dict['methods'] = [m for m in self.methods] + return json_dict + api.register(selfservice) |