Skip to content
Snippets Groups Projects
Unverified Commit 0f8c3afb authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #2315 from nextcloud/fix/middleware-registration-stable17

Fix middleware registration on stable17
parents ca61a1cc ddec9c32
No related branches found
Tags v0.20.0
No related merge requests found
......@@ -111,7 +111,8 @@ class BootstrapSingleton {
$container->registerAlias('ErrorMiddleware', ErrorMiddleware::class);
$container->registerMiddleWare('ErrorMiddleware');
$container->registerMiddleWare(ProvisioningMiddleware::class);
$container->registerAlias('ProvisioningMiddleware', ProvisioningMiddleware::class);
$container->registerMiddleWare('ProvisioningMiddleware');
$container->registerAlias(IGroupService::class, NextcloudGroupService::class);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment