#166 - Slack and Google Calendar feature flags (#167)

* slack and google calendar feature flags

* cs fix

* update .env.example
This commit is contained in:
Adrian Hopek
2022-06-13 13:50:23 +02:00
committed by GitHub
parent 31a6d287c8
commit 68e32ad930
5 changed files with 18 additions and 3 deletions

View File

@@ -4,11 +4,13 @@ declare(strict_types=1);
return [
"google" => [
"calendar_enabled" => env("GOOGLE_CALENDAR_ENABLED", true),
"client_id" => env("GOOGLE_CLIENT_ID"),
"client_secret" => env("GOOGLE_CLIENT_SECRET"),
"redirect" => env("GOOGLE_REDIRECT"),
],
"slack" => [
"enabled" => env("SLACK_ENABLED", true),
"url" => "https://slack.com/api",
"client_token" => env("SLACK_CLIENT_TOKEN"),
"default_channel" => env("SLACK_DEFAULT_CHANNEL"),