Add past trip IDs config variable
This commit is contained in:
parent
615ebfbd35
commit
f776ce702b
1 changed files with 12 additions and 0 deletions
|
@ -58,8 +58,20 @@ return [
|
||||||
|
|
||||||
'asset_url' => env('ASSET_URL'),
|
'asset_url' => env('ASSET_URL'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Trip IDs
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Get the IDs for current and past trips.
|
||||||
|
| TODO: Update when I have the proper API routes for Wayward.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
'current_trip_id' => env('CURRENT_TRIP_ID'),
|
'current_trip_id' => env('CURRENT_TRIP_ID'),
|
||||||
|
|
||||||
|
'past_trip_ids' => explode(',', env('PAST_TRIP_IDS')),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Application Timezone
|
| Application Timezone
|
||||||
|
|
Loading…
Reference in a new issue