Changeset View
Changeset View
Standalone View
Standalone View
src/config/app.php
Show First 20 Lines • Show All 248 Lines • ▼ Show 20 Lines | 'aliases' => [ | ||||
'Session' => Illuminate\Support\Facades\Session::class, | 'Session' => Illuminate\Support\Facades\Session::class, | ||||
'Storage' => Illuminate\Support\Facades\Storage::class, | 'Storage' => Illuminate\Support\Facades\Storage::class, | ||||
'Str' => Illuminate\Support\Str::class, | 'Str' => Illuminate\Support\Str::class, | ||||
'URL' => Illuminate\Support\Facades\URL::class, | 'URL' => Illuminate\Support\Facades\URL::class, | ||||
'Validator' => Illuminate\Support\Facades\Validator::class, | 'Validator' => Illuminate\Support\Facades\Validator::class, | ||||
'View' => Illuminate\Support\Facades\View::class, | 'View' => Illuminate\Support\Facades\View::class, | ||||
], | ], | ||||
'headers' => [ | |||||
'csp' => env('APP_HEADER_CSP', ""), | |||||
'xfo' => env('APP_HEADER_XFO', ""), | |||||
], | |||||
// Locations of knowledge base articles | // Locations of knowledge base articles | ||||
'kb' => [ | 'kb' => [ | ||||
// An article about suspended accounts | // An article about suspended accounts | ||||
'account_suspended' => env('KB_ACCOUNT_SUSPENDED'), | 'account_suspended' => env('KB_ACCOUNT_SUSPENDED'), | ||||
// An article about a way to delete an owned account | // An article about a way to delete an owned account | ||||
'account_delete' => env('KB_ACCOUNT_DELETE'), | 'account_delete' => env('KB_ACCOUNT_DELETE'), | ||||
], | ], | ||||
Show All 35 Lines |