diff options
author | Adam Young <ayoung@redhat.com> | 2010-10-25 19:55:57 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-12-20 23:32:06 -0500 |
commit | 07ace112afeaadade0ca372fe23a9432c2c9780f (patch) | |
tree | 6442a26960fd1d07087a90f28292f419cc3dbd71 /ipalib/plugins/delegation.py | |
parent | fc4ce7dc8c2102561396e4987ff6357bb79bf524 (diff) | |
download | freeipa-07ace112afeaadade0ca372fe23a9432c2c9780f.tar.gz freeipa-07ace112afeaadade0ca372fe23a9432c2c9780f.tar.xz freeipa-07ace112afeaadade0ca372fe23a9432c2c9780f.zip |
aci ui
Implements the role, privilege, permission, delegation and selfservice entities ui.
Targetgroup has been added to the object types.
The groups lists need to be filter. The filter is currently hidden, with a
hyperlink that reads 'filter' to unhide it. Each keystroke in this filter
performs an AJAX request to the server.
There are bugs on the server side that block some of the functionality from
completing
Creating a Permission requires one of 4 target types. The add dialog in this
version assumes the user will want to create a filter type. They can change
this on the edit page.
Most search results come back with the values as arrays, but ACIs seem not to.
Search and details both required special code to handle non-arrays.
The unit tests now make use of the 'module' aspect of QUnit. This means that
future unit test will also need to specify the module. The advantage is that
multiple tests can share a common setup and teardown.
Bugs that need to be fixed before this works 100% are
https://fedorahosted.org/freeipa/ticket/634
https://fedorahosted.org/freeipa/ticket/633
Diffstat (limited to 'ipalib/plugins/delegation.py')
-rw-r--r-- | ipalib/plugins/delegation.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/plugins/delegation.py b/ipalib/plugins/delegation.py index f68e7799f..6ed224421 100644 --- a/ipalib/plugins/delegation.py +++ b/ipalib/plugins/delegation.py @@ -138,6 +138,8 @@ class delegation(Object): json_dict = dict( (a, getattr(self, a)) for a in json_friendly_attributes ) + json_dict['primary_key'] = self.primary_key.name + json_dict['methods'] = [m for m in self.methods] return json_dict |