feat: Add form field for google api credentials

This commit is contained in:
Sturdy 2024-02-06 18:45:37 +01:00
parent 74d21f7ee1
commit 83698e7b3b
No known key found for this signature in database
2 changed files with 7 additions and 0 deletions

View File

@ -62,6 +62,12 @@
"max": 1024,
"env_variable": "ZOOM_CLIENT_SECRET"
},
{
"text": "text",
"label": "Google API Credentials in JSON form. Used for the Google Calendar integration. See https://github.com/calcom/cal.com?tab=readme-ov-file#obtaining-the-google-api-credentials",
"required": false,
"env_variable": "CALCOM_GOOGLE_API_CREDENTIALS"
},
{
"type": "email",
"label": "Configures the global From: header whilst sending emails.",

View File

@ -27,6 +27,7 @@ services:
- MS_GRAPH_CLIENT_SECRET=${MS_GRAPH_CLIENT_SECRET}
- ZOOM_CLIENT_ID=${ZOOM_CLIENT_ID}
- ZOOM_CLIENT_SECRET=${ZOOM_CLIENT_SECRET}
- GOOGLE_API_CREDENTIALS=${CALCOM_GOOGLE_API_CREDENTIALS}
- EMAIL_FROM=${EMAIL_FROM}
- EMAIL_SERVER_HOST=${EMAIL_SERVER_HOST}
- EMAIL_SERVER_PORT=${EMAIL_SERVER_PORT}