Skip to content

Commit

Permalink
Changed default constant names in new configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Sep 22, 2024
1 parent 2962512 commit fbdd7ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/platform.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
| can be utilized to prevent dashboard internal routes from being registered
| on subdomains that do not require access to your admin application.
|
| For instance, you can use the admin dashboard on a separate subdomain like
| For instance, you can use the 'admin' on a separate subdomain like
| 'admin.example.com'.
|
*/

'domain' => env('DASHBOARD_DOMAIN', null),
'domain' => env('PLATFORM_DOMAIN'),

/*
|--------------------------------------------------------------------------
Expand All @@ -29,7 +29,7 @@
|
*/

'prefix' => env('DASHBOARD_PREFIX', '/admin'),
'prefix' => env('PLATFORM_PREFIX', '/admin'),

/*
|--------------------------------------------------------------------------
Expand Down Expand Up @@ -185,7 +185,7 @@
*/

'attachment' => [
'disk' => env('DASHBOARD_FILESYSTEM_DISK', 'public'),
'disk' => env('PLATFORM_FILESYSTEM_DISK', 'public'),
'generator' => \Orchid\Attachment\Engines\Generator::class,
],

Expand Down

0 comments on commit fbdd7ce

Please sign in to comment.