Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Mar 14, 2020
2 parents 404b43b + f93f4ad commit 57cd6a8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 22 deletions.
10 changes: 5 additions & 5 deletions app/Providers/RouteServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public function map()
protected function mapWebRoutes()
{
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
->namespace($this->namespace)
->group(base_path('routes/web.php'));
}

/**
Expand All @@ -73,8 +73,8 @@ protected function mapWebRoutes()
protected function mapApiRoutes()
{
Route::prefix('api')
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
}
}
4 changes: 2 additions & 2 deletions config/cors.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

'allowed_headers' => ['*'],

'exposed_headers' => false,
'exposed_headers' => [],

'max_age' => false,
'max_age' => 0,

'supports_credentials' => false,

Expand Down
1 change: 1 addition & 0 deletions config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
'queue' => env('SQS_QUEUE', 'your-queue-name'),
'suffix' => env('SQS_SUFFIX'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],

Expand Down
4 changes: 2 additions & 2 deletions config/session.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
|
*/

'secure' => env('SESSION_SECURE_COOKIE', null),
'secure' => env('SESSION_SECURE_COOKIE'),

/*
|--------------------------------------------------------------------------
Expand All @@ -190,7 +190,7 @@
| take place, and can be used to mitigate CSRF attacks. By default, we
| do not enable this as other CSRF protection services are in place.
|
| Supported: "lax", "strict", "none"
| Supported: "lax", "strict", "none", null
|
*/

Expand Down
13 changes: 0 additions & 13 deletions config/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,4 @@
realpath(storage_path('framework/views'))
),

/*
|--------------------------------------------------------------------------
| Blade View Modification Checking
|--------------------------------------------------------------------------
|
| On every request the framework will check to see if a view has expired
| to determine if it needs to be recompiled. If you are in production
| and precompiling views this feature may be disabled to save time.
|
*/

'expires' => env('VIEW_CHECK_EXPIRATION', true),

];

0 comments on commit 57cd6a8

Please sign in to comment.