diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-24 01:36:54 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-24 01:36:54 +0000 |
commit | c38b90d5d4de1c6d351ce1d9fd94555376d6dda7 (patch) | |
tree | f3dcf6942471d4c3a663a4ed5c217b096cc92584 /ipalib/__init__.py | |
parent | f3aaf65f1c4bbee31dae9431423ab88a15eba990 (diff) | |
download | freeipa-c38b90d5d4de1c6d351ce1d9fd94555376d6dda7.tar.gz freeipa-c38b90d5d4de1c6d351ce1d9fd94555376d6dda7.tar.xz freeipa-c38b90d5d4de1c6d351ce1d9fd94555376d6dda7.zip |
321: Standard ipalib.api attribute now accepts plugins from the Backend base class
Diffstat (limited to 'ipalib/__init__.py')
-rw-r--r-- | ipalib/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/__init__.py b/ipalib/__init__.py index e6548ff8..216d654f 100644 --- a/ipalib/__init__.py +++ b/ipalib/__init__.py @@ -55,6 +55,7 @@ True import plugable import frontend +import backend api = plugable.API( frontend.Command, @@ -62,4 +63,5 @@ api = plugable.API( frontend.Method, frontend.Property, frontend.Application, + backend.Backend, ) |