fixed wizard enable/disable

This commit is contained in:
Denis Duliçi 2020-06-17 11:14:04 +03:00
parent 03e87467c1
commit 9c8a7a7af4

View File

@ -22,7 +22,7 @@ class RedirectIfWizardNotCompleted
}
// Check url
if (Str::startsWith($request->getPathInfo(), '/wizard')) {
if (Str::startsWith($request->getPathInfo(), '/wizard') || Str::startsWith($request->getPathInfo(), '/settings')) {
return $next($request);
}