mirror of
https://gh.wpcy.net/https://github.com/hayBIT/freescout2ant.git
synced 2026-05-25 20:34:06 +08:00
16 lines
707 B
PHP
16 lines
707 B
PHP
<?php
|
|
return [
|
|
'name' => 'AmeiseModule',
|
|
'ameise_client_secret' => env('AMEISE_CLIENT_SECRET'),
|
|
'ameise_mode' => env('AMEISE_MODE', 'test'), // test or live
|
|
'ameise_response_type' => env('AMEISE_RESPONSE_TYPE', 'code'),
|
|
'ameise_client_id' => env('AMEISE_CLIENT_ID'),
|
|
'ameise_state' => env('AMEISE_STATE', 'freescout'),
|
|
'ameise_scope' => env('AMEISE_SCOPE', 'ameise/mitarbeiterwebservice offline'),
|
|
'ameise_redirect_uri' => env('AMEISE_REDIRECT_URI', '/crm/auth'),
|
|
// Verbose logging can quickly grow the FreeScout activity_logs table.
|
|
// Disable by default and allow opt-in via AMEISE_LOG_STATUS=true.
|
|
'ameise_log_status' => env('AMEISE_LOG_STATUS', false),
|
|
|
|
];
|
|
|