shlink/config/autoload/webhooks.global.php
2022-01-05 17:46:38 +01:00

19 lines
478 B
PHP

<?php
declare(strict_types=1);
use function Shlinkio\Shlink\Config\env;
return (static function (): array {
$webhooks = env('VISITS_WEBHOOKS');
return [
'url_shortener' => [
// TODO Move these options to their own config namespace
'visits_webhooks' => $webhooks === null ? [] : explode(',', $webhooks),
'notify_orphan_visits_to_webhooks' => (bool) env('NOTIFY_ORPHAN_VISITS_TO_WEBHOOKS', false),
],
];
})();