diff options
author | Rob Crittenden <rcritten@redhat.com> | 2008-10-23 14:36:24 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2008-10-23 14:36:24 -0400 |
commit | d2b46f176e5dbc40b67ebd90e6953498c5d6249a (patch) | |
tree | aa9744362ceef772890d5ccaf5d70ea283f68387 /ipalib/crud.py | |
parent | 43ad16676f21629d399c41ef0b51a666eba4c219 (diff) | |
download | freeipa-d2b46f176e5dbc40b67ebd90e6953498c5d6249a.tar.gz freeipa-d2b46f176e5dbc40b67ebd90e6953498c5d6249a.tar.xz freeipa-d2b46f176e5dbc40b67ebd90e6953498c5d6249a.zip |
Use common display function for user-show and user-find.
Add --all option to user-find
Fix command-line help to make sense on searches as well
Diffstat (limited to 'ipalib/crud.py')
-rw-r--r-- | ipalib/crud.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/crud.py b/ipalib/crud.py index ba4d57187..6194b3fa7 100644 --- a/ipalib/crud.py +++ b/ipalib/crud.py @@ -63,6 +63,8 @@ class Find(frontend.Method): def get_options(self): for param in self.obj.params_minus_pk(): yield param.__clone__(required=False) + for option in self.takes_options: + yield option class CrudBackend(backend.Backend): |