summaryrefslogtreecommitdiff
path: root/oslo_middleware/__init__.py
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-10-26 16:20:36 +0000
committerGerrit Code Review <review@openstack.org>2021-10-26 16:20:36 +0000
commitb75a7184d9b88a152402673d39c67c8a8e74bb2c (patch)
tree14daa47739107bdca288f5343ed6d8f97f3d7a1f /oslo_middleware/__init__.py
parent02d9a22267790785fe00777f8bde08a8503fc40a (diff)
parent8e47bfc77c37610e0da577f13d7a3eb7894139a0 (diff)
downloadoslo-middleware-b75a7184d9b88a152402673d39c67c8a8e74bb2c.tar.gz
Merge "Add paste.filter_factory entrypoint for basic auth middleware"4.5.0
Diffstat (limited to 'oslo_middleware/__init__.py')
-rw-r--r--oslo_middleware/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/oslo_middleware/__init__.py b/oslo_middleware/__init__.py
index ea1c12d..3966cde 100644
--- a/oslo_middleware/__init__.py
+++ b/oslo_middleware/__init__.py
@@ -10,7 +10,8 @@
# License for the specific language governing permissions and limitations
# under the License.
-__all__ = ['CatchErrors',
+__all__ = ['BasicAuthMiddleware',
+ 'CatchErrors',
'CorrelationId',
'CORS',
'Debug',
@@ -20,6 +21,7 @@ __all__ = ['CatchErrors',
'RequestBodySizeLimiter',
'SSLMiddleware']
+from oslo_middleware.basic_auth import BasicAuthMiddleware
from oslo_middleware.catch_errors import CatchErrors
from oslo_middleware.correlation_id import CorrelationId
from oslo_middleware.cors import CORS