15 lines
701 B
PHP
Executable File
15 lines
701 B
PHP
Executable File
<?php
|
||
defined('BASEPATH') or exit('No direct script access allowed');
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Legacy FCM config – DO NOT USE
|
||
|--------------------------------------------------------------------------
|
||
| Push notifications use FCM HTTP v1 only (see application/helpers/fcm_v1_helper.php).
|
||
| Set FCM_CREDENTIALS_PATH or FCM_CREDENTIALS_JSON and FCM_PROJECT_ID in the environment.
|
||
| This file exists so the deprecated application/libraries/Fcm.php does not
|
||
| load a missing config; the legacy library must not be used (no legacy API key).
|
||
*/
|
||
$config['fcm_api_key'] = '';
|
||
$config['fcm_api_send_address'] = 'https://fcm.googleapis.com/fcm/send';
|