Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions config/forwards.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

// This file is published by the siteboss-framework package

return [

/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option controls the default authentication "guard" and password
| reset options for your application. You may change these defaults
| as required, but they're a perfect start for most applications.
|
*/

'token' => env('SITEBOSS_FORWARDS_TOKEN'),
];
1 change: 1 addition & 0 deletions src/FrameworkServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public function boot(): void
__DIR__.'/../config/openid.php' => config_path('openid.php'),
__DIR__.'/../config/clamav.php' => config_path('clamav.php'),
__DIR__.'/../config/database.php' => config_path('database.php'),
__DIR__.'/../config/forwards.php' => config_path('forwards.php'),
__DIR__.'/../config/indexer.php' => config_path('indexer.php'),
__DIR__.'/../config/laravellocalization.php' => config_path('laravellocalization.php'),
__DIR__.'/../resources/css/siteboss.css' => public_path('assets/static/siteboss.css'),
Expand Down
Loading