System status now ignores hidden groups for guests - Fixes #2577

This commit is contained in:
James Brooks
2017-06-19 14:23:32 +01:00
parent 19ac600082
commit af3d5ab493
3 changed files with 36 additions and 6 deletions
@@ -97,8 +97,9 @@ class IntegrationServiceProvider extends ServiceProvider
{
$this->app->singleton(SystemContract::class, function (Container $app) {
$config = $app['config'];
$auth = $app['auth.driver'];
return new System($config);
return new System($config, $auth);
});
}