Manage subscribtion

Existing subscription user should be able to manage his setting without considering if he is allowed to subscribe or not.
This commit is contained in:
Antonio
2019-01-19 15:39:10 +02:00
committed by GitHub
parent 123d24da93
commit 47470146ae

View File

@@ -52,10 +52,6 @@ class SubscribersConfigured
*/ */
public function handle(Request $request, Closure $next) public function handle(Request $request, Closure $next)
{ {
if (!$this->config->get('setting.enable_subscribers')) {
return cachet_redirect('status-page');
}
return $next($request); return $next($request);
} }
} }