1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-31 15:24:31 +03:00

Started backend theme system

Allows customization of back-end components via event-driven handling
from the theme folder.
This commit is contained in:
Dan Brown
2021-03-16 17:14:03 +00:00
parent 1420f239fc
commit c61c3bc608
7 changed files with 142 additions and 0 deletions

View File

@ -115,6 +115,7 @@ return [
BookStack\Providers\TranslationServiceProvider::class,
// BookStack custom service providers
BookStack\Providers\ThemeServiceProvider::class,
BookStack\Providers\AuthServiceProvider::class,
BookStack\Providers\AppServiceProvider::class,
BookStack\Providers\BroadcastServiceProvider::class,
@ -186,6 +187,7 @@ return [
'Views' => BookStack\Facades\Views::class,
'Images' => BookStack\Facades\Images::class,
'Permissions' => BookStack\Facades\Permissions::class,
'Theme' => BookStack\Facades\Theme::class,
],