diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2010-01-26 06:39:00 -0700 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2010-01-26 10:32:44 -0500 |
commit | 7b571e369312ae5c246f1a90337c0d5980a6a538 (patch) | |
tree | 3f94d4c226ad93fa6d4e4c51651a1a2a5e22e6b5 /ipalib/plugable.py | |
parent | e9dc9de23afa987e59b1dcfc1a0e9c21b4c1f472 (diff) | |
download | freeipa-7b571e369312ae5c246f1a90337c0d5980a6a538.tar.gz freeipa-7b571e369312ae5c246f1a90337c0d5980a6a538.tar.xz freeipa-7b571e369312ae5c246f1a90337c0d5980a6a538.zip |
Enabled CRUDS in webUI using wehjit 0.2.0
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r-- | ipalib/plugable.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py index 3ee2bd545..ecccb79e3 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -531,6 +531,8 @@ class API(DictProxy): value = getattr(options, key, None) if value is not None: overrides[key] = value + if hasattr(options, 'prod'): + overrides['webui_prod'] = options.prod if context is not None: overrides['context'] = context self.bootstrap(**overrides) |