You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
463 B
10 lines
463 B
<?php |
|
|
|
return [ |
|
'enabled' => filter_var(env('ZAMMAD_ENABLED', true), FILTER_VALIDATE_BOOL), |
|
'base_url' => rtrim((string) env('ZAMMAD_BASE_URL', 'https://zammad.gisportal.id'), '/'), |
|
'api_token' => (string) env('ZAMMAD_API_TOKEN', ''), |
|
'timeout' => (int) env('ZAMMAD_TIMEOUT', 30), |
|
'default_group' => (string) env('ZAMMAD_DEFAULT_GROUP', 'Users'), |
|
'fallback_customer' => (string) env('ZAMMAD_FALLBACK_CUSTOMER', 'support@geonet.co.id'), |
|
];
|
|
|