summaryrefslogtreecommitdiffstats
path: root/ipalib/crud.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/crud.py')
-rw-r--r--ipalib/crud.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ipalib/crud.py b/ipalib/crud.py
index bdcf3047..d6d42494 100644
--- a/ipalib/crud.py
+++ b/ipalib/crud.py
@@ -31,11 +31,13 @@ class Add(frontend.Method):
class Get(frontend.Method):
- pass
+ def get_args(self):
+ yield self.obj.primary_key
class Del(frontend.Method):
- pass
+ def get_args(self):
+ yield self.obj.primary_key
class Mod(frontend.Method):