mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-08-07 23:03:00 +03:00
Added initial settings interface, Fixes #9.
This commit is contained in:
@@ -4,6 +4,7 @@ namespace Oxbow\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Oxbow\Services\ActivityService;
|
||||
use Oxbow\Services\SettingService;
|
||||
|
||||
class CustomFacadeProvider extends ServiceProvider
|
||||
{
|
||||
@@ -27,5 +28,9 @@ class CustomFacadeProvider extends ServiceProvider
|
||||
$this->app->bind('activity', function() {
|
||||
return new ActivityService($this->app->make('Oxbow\Activity'));
|
||||
});
|
||||
|
||||
$this->app->bind('setting', function() {
|
||||
return new SettingService($this->app->make('Oxbow\Setting'));
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user