summaryrefslogtreecommitdiffstats
path: root/ipalib/backend.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-09-24 00:44:41 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-09-24 00:44:41 +0000
commitf3aaf65f1c4bbee31dae9431423ab88a15eba990 (patch)
tree46ddafec983e8337b014e3c9fcda59d7bb6071a3 /ipalib/backend.py
parent81de10f176437053ac47bfee8f5ec81e38f2cf57 (diff)
downloadfreeipa-f3aaf65f1c4bbee31dae9431423ab88a15eba990.tar.gz
freeipa-f3aaf65f1c4bbee31dae9431423ab88a15eba990.tar.xz
freeipa-f3aaf65f1c4bbee31dae9431423ab88a15eba990.zip
320: plugable.API now respects the Plugin.__proxy__ flag; added test for plugins without proxy to unit tests for API
Diffstat (limited to 'ipalib/backend.py')
-rw-r--r--ipalib/backend.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/ipalib/backend.py b/ipalib/backend.py
index 053609c5..82ed14f3 100644
--- a/ipalib/backend.py
+++ b/ipalib/backend.py
@@ -24,4 +24,8 @@ Base classes for all backed-end plugins.
import plugable
class Backend(plugable.Plugin):
- pass
+ """
+ Base class for all backend plugins.
+ """
+
+ __proxy__ = False # Backend plugins are not wrapped in a PluginProxy