- Actualizar middleware CORS para permitir orígenes de producción y apps móviles - Cambiar timezone de America/Tijuana a America/Mexico_City en PostulationController - Agregar configuración de Google Maps - Agregar servicio de notificaciones push Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
984 B
PHP
Executable File
34 lines
984 B
PHP
Executable File
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| One Signal App Id
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Your OneSignal App ID from the OneSignal dashboard
|
|
|
|
|
*/
|
|
'app_id' => env('ONESIGNAL_APP_ID'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Rest API Key
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Your OneSignal REST API Key from the OneSignal dashboard
|
|
|
|
|
*/
|
|
'rest_api_key' => env('ONESIGNAL_REST_API_KEY'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| User Auth Key
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Your OneSignal User Auth Key (optional, for user-level API access)
|
|
|
|
|
*/
|
|
'user_auth_key' => env('ONESIGNAL_USER_AUTH_KEY'),
|
|
];
|