Skip to content

Commit

Permalink
feat: add config
Browse files Browse the repository at this point in the history
  • Loading branch information
64knl committed Nov 28, 2023
1 parent 5e6a9b2 commit f275015
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
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__.'/Providers/AuthServiceProvider.php' => app_path('Providers/AuthServiceProvider.php'),
Expand Down

0 comments on commit f275015

Please sign in to comment.