2022-02-09 22:17:10 +00:00
|
|
|
{
|
2022-02-11 10:24:23 +00:00
|
|
|
"$schema": "https://turborepo.org/schema.json",
|
2022-02-09 22:17:10 +00:00
|
|
|
"pipeline": {
|
2022-05-26 17:44:23 +00:00
|
|
|
"@calcom/prisma#build": {
|
2022-07-15 05:47:37 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["post-install"]
|
2022-05-26 17:44:23 +00:00
|
|
|
},
|
2022-06-22 20:41:19 +00:00
|
|
|
"@calcom/prisma#db-migrate": {
|
2022-04-06 19:52:48 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["@calcom/prisma#db-up"],
|
|
|
|
"inputs": ["./schema.prisma", "./migrations/**/*.sql"]
|
2022-02-18 22:16:53 +00:00
|
|
|
},
|
2022-02-15 20:30:52 +00:00
|
|
|
"@calcom/prisma#db-seed": {
|
2022-02-18 22:16:53 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["@calcom/prisma#db-migrate"]
|
2022-06-22 20:41:19 +00:00
|
|
|
},
|
|
|
|
"@calcom/prisma#db-up": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false
|
2022-06-22 20:41:19 +00:00
|
|
|
},
|
|
|
|
"@calcom/prisma#dx": {
|
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["@calcom/prisma#db-migrate"]
|
2022-02-10 18:30:32 +00:00
|
|
|
},
|
2022-02-11 10:24:23 +00:00
|
|
|
"@calcom/web#build": {
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": [".next/**"],
|
2023-03-17 21:14:12 +00:00
|
|
|
"env": [
|
|
|
|
"NEXT_PUBLIC_IS_E2E",
|
|
|
|
"NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE_MONTHLY",
|
|
|
|
"NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRODUCT_ID",
|
|
|
|
"NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
|
|
|
|
"NEXT_PUBLIC_STRIPE_TEAM_MONTHLY_PRICE_ID",
|
|
|
|
"NEXT_PUBLIC_WEBAPP_URL",
|
|
|
|
"NEXT_PUBLIC_WEBSITE_URL",
|
|
|
|
"STRIPE_PREMIUM_PLAN_PRODUCT_ID",
|
|
|
|
"STRIPE_TEAM_MONTHLY_PRICE_ID"
|
|
|
|
]
|
2022-02-11 10:24:23 +00:00
|
|
|
},
|
2022-02-15 20:30:52 +00:00
|
|
|
"@calcom/web#dx": {
|
2022-06-22 20:41:19 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["@calcom/prisma#dx"]
|
2022-02-15 20:30:52 +00:00
|
|
|
},
|
2022-03-17 19:36:11 +00:00
|
|
|
"@calcom/web#start": {
|
2022-05-30 17:11:05 +00:00
|
|
|
"cache": false,
|
2023-03-17 21:14:12 +00:00
|
|
|
"dependsOn": []
|
2022-05-30 17:11:05 +00:00
|
|
|
},
|
2022-03-02 20:28:57 +00:00
|
|
|
"@calcom/website#build": {
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": [".next/**"],
|
2023-03-17 21:14:12 +00:00
|
|
|
"env": [
|
|
|
|
"CSP_POLICY",
|
|
|
|
"DATOCMS_API_TOKEN",
|
|
|
|
"DATOCMS_GRAPHQL_ENDPOINT",
|
|
|
|
"ENVIRONMENT_URL",
|
|
|
|
"NEXT_PUBLIC_IS_PREMIUM_NEW_PLAN",
|
|
|
|
"NEXT_PUBLIC_STRIPE_FREE_PLAN_PRICE",
|
|
|
|
"NEXT_PUBLIC_STRIPE_PREMIUM_NEW_PLAN_PRICE",
|
|
|
|
"NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE",
|
|
|
|
"NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE",
|
|
|
|
"NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
|
|
|
|
"NEXT_PUBLIC_WEBAPP_URL",
|
|
|
|
"NEXT_PUBLIC_WEBSITE_URL",
|
|
|
|
"SENDGRID_VERIFICATION_KEY",
|
|
|
|
"STRIPE_FREE_PLAN_PRODUCT_ID",
|
|
|
|
"STRIPE_PREMIUM_PLAN_PRODUCT_ID",
|
|
|
|
"STRIPE_PRO_PLAN_PRODUCT_ID",
|
2023-03-21 03:15:31 +00:00
|
|
|
"STRIPE_SUPPORT_TABLE",
|
|
|
|
"MOTIFLAND_REST_ENDPOINT",
|
|
|
|
"MOTIFLAND_DOCS_API_KEY",
|
|
|
|
"MOTIFLAND_DOCS_PROJECT_ID"
|
2023-03-17 21:14:12 +00:00
|
|
|
]
|
2022-03-02 20:28:57 +00:00
|
|
|
},
|
2022-02-09 22:17:10 +00:00
|
|
|
"build": {
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**", ".next/**"]
|
2022-02-09 22:17:10 +00:00
|
|
|
},
|
2022-06-22 20:41:19 +00:00
|
|
|
"db-deploy": {
|
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"inputs": ["./migrations/**/*.sql", "./prisma/migrations/**/*.sql"]
|
2022-06-22 20:41:19 +00:00
|
|
|
},
|
2023-03-17 21:14:12 +00:00
|
|
|
"db-seed": {},
|
2022-02-09 23:59:34 +00:00
|
|
|
"deploy": {
|
2022-04-06 19:52:48 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["@calcom/web#build"]
|
2022-02-09 23:59:34 +00:00
|
|
|
},
|
2022-02-09 22:17:10 +00:00
|
|
|
"clean": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["dist/**", "build/**"]
|
2022-02-09 22:17:10 +00:00
|
|
|
},
|
|
|
|
"dev": {
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["//#env-check:common", "//#env-check:app-store"],
|
2022-02-09 22:17:10 +00:00
|
|
|
"cache": false
|
2022-02-09 22:37:50 +00:00
|
|
|
},
|
|
|
|
"dx": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false
|
2022-02-09 22:37:50 +00:00
|
|
|
},
|
|
|
|
"lint": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false
|
2022-02-09 22:45:25 +00:00
|
|
|
},
|
2022-07-12 14:32:27 +00:00
|
|
|
"lint:fix": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false
|
2022-07-12 14:32:27 +00:00
|
|
|
},
|
2022-03-09 17:52:48 +00:00
|
|
|
"lint:report": {
|
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["lint-results"]
|
2022-03-09 17:52:48 +00:00
|
|
|
},
|
2022-05-27 19:49:13 +00:00
|
|
|
"post-install": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"dependsOn": [],
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["../../node_modules/@prisma/client/**", "../../node_modules/@prisma/admin-client/**"],
|
|
|
|
"inputs": ["./schema.prisma", "./prisma/schema.prisma"],
|
|
|
|
"env": ["PRISMA_GENERATE_DATAPROXY"]
|
2022-05-27 19:49:13 +00:00
|
|
|
},
|
2022-07-21 09:59:37 +00:00
|
|
|
"@calcom/prisma#post-install": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["dist/**", "build/**"]
|
2023-03-17 21:14:12 +00:00
|
|
|
},
|
|
|
|
"start": {
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["dist/**", "build/**"]
|
2022-07-21 09:59:37 +00:00
|
|
|
},
|
2022-04-25 04:33:00 +00:00
|
|
|
"embed-tests": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["dist/**", "build/**"]
|
2022-04-25 04:33:00 +00:00
|
|
|
},
|
|
|
|
"embed-tests-quick": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["dist/**", "build/**"]
|
2022-04-25 04:33:00 +00:00
|
|
|
},
|
2022-02-09 22:45:25 +00:00
|
|
|
"type-check": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false
|
2023-03-28 20:12:40 +00:00
|
|
|
},
|
|
|
|
"type-check:ci": {
|
|
|
|
"cache": false
|
2022-06-22 20:41:19 +00:00
|
|
|
},
|
2022-07-21 16:44:23 +00:00
|
|
|
"@calcom/prisma#db-reset": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["dist/**", "build/**"]
|
2022-07-21 16:44:23 +00:00
|
|
|
},
|
2022-06-24 15:38:17 +00:00
|
|
|
"@calcom/app-store-cli#build": {
|
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"inputs": ["../../app-store/**/**"],
|
|
|
|
"outputs": ["../../app-store/apps.server.generated.ts", "../../app-store/apps.browser.generated.tsx"]
|
2022-06-24 15:38:17 +00:00
|
|
|
},
|
|
|
|
"@calcom/embed-react#type-check": {
|
2023-03-20 18:46:22 +00:00
|
|
|
"dependsOn": ["@calcom/embed-core#build", "@calcom/embed-snippet#build"],
|
|
|
|
"outputs": ["dist/**", "build/**"]
|
2022-06-22 20:41:19 +00:00
|
|
|
},
|
2022-06-22 21:10:49 +00:00
|
|
|
"@calcom/embed-core#build": {
|
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["../../../apps/web/public/embed/**"]
|
2022-06-22 21:10:49 +00:00
|
|
|
},
|
2022-06-22 20:41:19 +00:00
|
|
|
"embed-tests-update-snapshots:ci": {
|
2022-07-14 12:40:53 +00:00
|
|
|
"cache": false,
|
2022-06-24 15:38:17 +00:00
|
|
|
"dependsOn": [
|
|
|
|
"@calcom/prisma#db-seed",
|
|
|
|
"@calcom/web#build",
|
2023-02-21 16:48:01 +00:00
|
|
|
"^build",
|
2022-06-24 15:38:17 +00:00
|
|
|
"^embed-tests-update-snapshots:ci"
|
2023-03-17 21:14:12 +00:00
|
|
|
],
|
2023-03-20 18:46:22 +00:00
|
|
|
"outputs": ["dist/**", "build/**"]
|
2022-06-22 20:41:19 +00:00
|
|
|
},
|
|
|
|
"//#env-check:common": {
|
2022-07-30 01:30:02 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"inputs": ["./.env.example", "./.env"],
|
|
|
|
"outputs": ["./.env"]
|
2022-06-22 20:41:19 +00:00
|
|
|
},
|
|
|
|
"//#env-check:app-store": {
|
2022-07-30 01:30:02 +00:00
|
|
|
"cache": false,
|
2023-03-20 18:46:22 +00:00
|
|
|
"inputs": ["./.env.appStore.example", "./.env.appStore"],
|
|
|
|
"outputs": ["./.env.appStore"]
|
2022-09-02 02:00:48 +00:00
|
|
|
},
|
|
|
|
"//#test": {
|
2023-03-17 21:14:12 +00:00
|
|
|
"cache": false
|
2022-02-10 19:00:12 +00:00
|
|
|
}
|
2022-07-21 16:44:23 +00:00
|
|
|
},
|
2023-03-20 18:46:22 +00:00
|
|
|
"globalDependencies": ["yarn.lock"],
|
2023-03-17 21:14:12 +00:00
|
|
|
"globalEnv": [
|
|
|
|
"ANALYZE",
|
feat: Organizations (#8993)
* Initial commit
* Adding feature flag
* feat: Orgs Schema Changing `scopedMembers` to `orgUsers` (#9209)
* Change scopedMembers to orgMembers
* Change to orgUsers
* Letting duplicate slugs for teams to support orgs
* Covering null on unique clauses
* Supporting having the orgId in the session cookie
* feat: organization event type filter (#9253)
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* Missing changes to support orgs schema changes
* feat: Onboarding process to create an organization (#9184)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Making sure we check requestedSlug now
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: [CAL-1816] Organization subdomain support (#9345)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* Covering users and subteams, excluding non-org users
* Unpublished teams shows correctly
* Create subdomain in Vercel
* feedback
* Renaming Vercel env vars
* Vercel domain check before creation
* Supporting cal-staging.com
* Change to have vercel detect it
* vercel domain check data message error
* Remove check domain
* Making sure we check requestedSlug now
* Feedback and unneeded code
* Reverting unneeded changes
* Unneeded changes
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Vercel subdomain creation in PROD only
* Making sure we let localhost still work
* Feedback
* Type check fixes
* feat: Organization branding in side menu (#9279)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Making sure we show the set up profile on org only
* Profile username availability rely on org hook
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: Organization support for event types page (#9449)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Processing orgs and children as profile options
* Reverting change not belonging to this PR
* Making sure we show the set up profile on org only
* Removing console.log
* Comparing memberships to choose the highest one
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Type errors
* Refactor and type fixes
* Update orgDomains.ts
* Feedback
* Reverting
* NIT
* fix issue getting org slug from domain
* Improving orgDomains util
* Host comes with port
* Update useRouterQuery.ts
* Feedback
* Feedback
* Feedback
* Feedback: SSR for user event-types to have org context
* chore: Cache node_modules (#9492)
* Adding check for cache hit
* Adding a separate install step first
* Put the restore cache steps back
* Revert the uses type for restoring cache
* Added step to restore nm cache
* Removed the cache-hit check
* Comments and naming
* Removed extra install command
* Updated the name of the linting step to be more clear
* Removes the need for useEffect here
* Feedback
* Feedback
* Cookie domain needs a dot
* Type fix
* Update apps/web/public/static/locales/en/common.json
Co-authored-by: Omar López <zomars@me.com>
* Update packages/emails/src/templates/OrganizationAccountVerifyEmail.tsx
* Feedback
---------
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: Efraín Rochín <roae.85@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
2023-06-14 21:40:20 +00:00
|
|
|
"AUTH_BEARER_TOKEN_VERCEL",
|
2023-03-17 21:14:12 +00:00
|
|
|
"API_KEY_PREFIX",
|
|
|
|
"APP_USER_NAME",
|
|
|
|
"BUILD_ID",
|
|
|
|
"CALCOM_LICENSE_KEY",
|
|
|
|
"CALCOM_TELEMETRY_DISABLED",
|
|
|
|
"CALENDSO_ENCRYPTION_KEY",
|
|
|
|
"CI",
|
|
|
|
"CLOSECOM_API_KEY",
|
|
|
|
"CRON_API_KEY",
|
|
|
|
"DAILY_API_KEY",
|
|
|
|
"DAILY_SCALE_PLAN",
|
|
|
|
"DEBUG",
|
|
|
|
"EMAIL_FROM",
|
|
|
|
"EMAIL_SERVER_HOST",
|
|
|
|
"EMAIL_SERVER_PASSWORD",
|
|
|
|
"EMAIL_SERVER_PORT",
|
|
|
|
"EMAIL_SERVER_USER",
|
|
|
|
"EMAIL_SERVER",
|
|
|
|
"EXCHANGE_DEFAULT_EWS_URL",
|
|
|
|
"GIPHY_API_KEY",
|
|
|
|
"GITHUB_API_REPO_TOKEN",
|
|
|
|
"GOOGLE_API_CREDENTIALS",
|
|
|
|
"GOOGLE_LOGIN_ENABLED",
|
|
|
|
"HEROKU_APP_NAME",
|
|
|
|
"HUBSPOT_CLIENT_ID",
|
|
|
|
"HUBSPOT_CLIENT_SECRET",
|
|
|
|
"INTEGRATION_TEST_MODE",
|
feat: Organizations (#8993)
* Initial commit
* Adding feature flag
* feat: Orgs Schema Changing `scopedMembers` to `orgUsers` (#9209)
* Change scopedMembers to orgMembers
* Change to orgUsers
* Letting duplicate slugs for teams to support orgs
* Covering null on unique clauses
* Supporting having the orgId in the session cookie
* feat: organization event type filter (#9253)
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* Missing changes to support orgs schema changes
* feat: Onboarding process to create an organization (#9184)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Making sure we check requestedSlug now
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: [CAL-1816] Organization subdomain support (#9345)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* Covering users and subteams, excluding non-org users
* Unpublished teams shows correctly
* Create subdomain in Vercel
* feedback
* Renaming Vercel env vars
* Vercel domain check before creation
* Supporting cal-staging.com
* Change to have vercel detect it
* vercel domain check data message error
* Remove check domain
* Making sure we check requestedSlug now
* Feedback and unneeded code
* Reverting unneeded changes
* Unneeded changes
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Vercel subdomain creation in PROD only
* Making sure we let localhost still work
* Feedback
* Type check fixes
* feat: Organization branding in side menu (#9279)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Making sure we show the set up profile on org only
* Profile username availability rely on org hook
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: Organization support for event types page (#9449)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Processing orgs and children as profile options
* Reverting change not belonging to this PR
* Making sure we show the set up profile on org only
* Removing console.log
* Comparing memberships to choose the highest one
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Type errors
* Refactor and type fixes
* Update orgDomains.ts
* Feedback
* Reverting
* NIT
* fix issue getting org slug from domain
* Improving orgDomains util
* Host comes with port
* Update useRouterQuery.ts
* Feedback
* Feedback
* Feedback
* Feedback: SSR for user event-types to have org context
* chore: Cache node_modules (#9492)
* Adding check for cache hit
* Adding a separate install step first
* Put the restore cache steps back
* Revert the uses type for restoring cache
* Added step to restore nm cache
* Removed the cache-hit check
* Comments and naming
* Removed extra install command
* Updated the name of the linting step to be more clear
* Removes the need for useEffect here
* Feedback
* Feedback
* Cookie domain needs a dot
* Type fix
* Update apps/web/public/static/locales/en/common.json
Co-authored-by: Omar López <zomars@me.com>
* Update packages/emails/src/templates/OrganizationAccountVerifyEmail.tsx
* Feedback
---------
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: Efraín Rochín <roae.85@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
2023-06-14 21:40:20 +00:00
|
|
|
"INTERCOM_SECRET",
|
2023-03-17 21:14:12 +00:00
|
|
|
"IP_BANLIST",
|
|
|
|
"LARK_OPEN_APP_ID",
|
|
|
|
"LARK_OPEN_APP_SECRET",
|
|
|
|
"LARK_OPEN_VERIFICATION_TOKEN",
|
|
|
|
"MS_GRAPH_CLIENT_ID",
|
|
|
|
"MS_GRAPH_CLIENT_SECRET",
|
|
|
|
"NEXT_PUBLIC_API_URL",
|
|
|
|
"NEXT_PUBLIC_APP_NAME",
|
|
|
|
"NEXT_PUBLIC_COMPANY_NAME",
|
|
|
|
"NEXT_PUBLIC_CONSOLE_URL",
|
|
|
|
"NEXT_PUBLIC_DEBUG",
|
|
|
|
"NEXT_PUBLIC_DISABLE_SIGNUP",
|
|
|
|
"NEXT_PUBLIC_EMBED_LIB_URL",
|
|
|
|
"NEXT_PUBLIC_HOSTED_CAL_FEATURES",
|
2023-04-13 19:55:26 +00:00
|
|
|
"NEXT_PUBLIC_MINUTES_TO_BOOK",
|
2023-03-17 21:14:12 +00:00
|
|
|
"NEXT_PUBLIC_SENDER_ID",
|
|
|
|
"NEXT_PUBLIC_SENDGRID_SENDER_NAME",
|
|
|
|
"NEXT_PUBLIC_STRIPE_PRICING_TABLE_ID",
|
|
|
|
"NEXT_PUBLIC_STRIPE_PRICING_TABLE_PUBLISHABLE_KEY",
|
|
|
|
"NEXT_PUBLIC_SUPPORT_MAIL_ADDRESS",
|
|
|
|
"NEXT_PUBLIC_SWAGGER_DOCS_URL",
|
|
|
|
"NEXT_PUBLIC_TEAM_IMPERSONATION",
|
2023-03-20 11:16:46 +00:00
|
|
|
"NEXT_PUBLIC_VERCEL_URL",
|
2023-03-17 21:14:12 +00:00
|
|
|
"NEXTAUTH_COOKIE_DOMAIN",
|
|
|
|
"NEXTAUTH_SECRET",
|
|
|
|
"NEXTAUTH_URL",
|
|
|
|
"NODE_ENV",
|
feat: Organizations (#8993)
* Initial commit
* Adding feature flag
* feat: Orgs Schema Changing `scopedMembers` to `orgUsers` (#9209)
* Change scopedMembers to orgMembers
* Change to orgUsers
* Letting duplicate slugs for teams to support orgs
* Covering null on unique clauses
* Supporting having the orgId in the session cookie
* feat: organization event type filter (#9253)
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* Missing changes to support orgs schema changes
* feat: Onboarding process to create an organization (#9184)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Making sure we check requestedSlug now
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: [CAL-1816] Organization subdomain support (#9345)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* Covering users and subteams, excluding non-org users
* Unpublished teams shows correctly
* Create subdomain in Vercel
* feedback
* Renaming Vercel env vars
* Vercel domain check before creation
* Supporting cal-staging.com
* Change to have vercel detect it
* vercel domain check data message error
* Remove check domain
* Making sure we check requestedSlug now
* Feedback and unneeded code
* Reverting unneeded changes
* Unneeded changes
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Vercel subdomain creation in PROD only
* Making sure we let localhost still work
* Feedback
* Type check fixes
* feat: Organization branding in side menu (#9279)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Making sure we show the set up profile on org only
* Profile username availability rely on org hook
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: Organization support for event types page (#9449)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Processing orgs and children as profile options
* Reverting change not belonging to this PR
* Making sure we show the set up profile on org only
* Removing console.log
* Comparing memberships to choose the highest one
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Type errors
* Refactor and type fixes
* Update orgDomains.ts
* Feedback
* Reverting
* NIT
* fix issue getting org slug from domain
* Improving orgDomains util
* Host comes with port
* Update useRouterQuery.ts
* Feedback
* Feedback
* Feedback
* Feedback: SSR for user event-types to have org context
* chore: Cache node_modules (#9492)
* Adding check for cache hit
* Adding a separate install step first
* Put the restore cache steps back
* Revert the uses type for restoring cache
* Added step to restore nm cache
* Removed the cache-hit check
* Comments and naming
* Removed extra install command
* Updated the name of the linting step to be more clear
* Removes the need for useEffect here
* Feedback
* Feedback
* Cookie domain needs a dot
* Type fix
* Update apps/web/public/static/locales/en/common.json
Co-authored-by: Omar López <zomars@me.com>
* Update packages/emails/src/templates/OrganizationAccountVerifyEmail.tsx
* Feedback
---------
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: Efraín Rochín <roae.85@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
2023-06-14 21:40:20 +00:00
|
|
|
"ORGANIZATIONS_ENABLED",
|
2023-03-17 21:14:12 +00:00
|
|
|
"PAYMENT_FEE_FIXED",
|
|
|
|
"PAYMENT_FEE_PERCENTAGE",
|
|
|
|
"PLAYWRIGHT_HEADLESS",
|
|
|
|
"PLAYWRIGHT_TEST_BASE_URL",
|
|
|
|
"PRISMA_FIELD_ENCRYPTION_KEY",
|
|
|
|
"PRISMA_GENERATE_DATAPROXY",
|
feat: Organizations (#8993)
* Initial commit
* Adding feature flag
* feat: Orgs Schema Changing `scopedMembers` to `orgUsers` (#9209)
* Change scopedMembers to orgMembers
* Change to orgUsers
* Letting duplicate slugs for teams to support orgs
* Covering null on unique clauses
* Supporting having the orgId in the session cookie
* feat: organization event type filter (#9253)
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* Missing changes to support orgs schema changes
* feat: Onboarding process to create an organization (#9184)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Making sure we check requestedSlug now
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: [CAL-1816] Organization subdomain support (#9345)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* Covering users and subteams, excluding non-org users
* Unpublished teams shows correctly
* Create subdomain in Vercel
* feedback
* Renaming Vercel env vars
* Vercel domain check before creation
* Supporting cal-staging.com
* Change to have vercel detect it
* vercel domain check data message error
* Remove check domain
* Making sure we check requestedSlug now
* Feedback and unneeded code
* Reverting unneeded changes
* Unneeded changes
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Vercel subdomain creation in PROD only
* Making sure we let localhost still work
* Feedback
* Type check fixes
* feat: Organization branding in side menu (#9279)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Making sure we show the set up profile on org only
* Profile username availability rely on org hook
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: Organization support for event types page (#9449)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Processing orgs and children as profile options
* Reverting change not belonging to this PR
* Making sure we show the set up profile on org only
* Removing console.log
* Comparing memberships to choose the highest one
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Type errors
* Refactor and type fixes
* Update orgDomains.ts
* Feedback
* Reverting
* NIT
* fix issue getting org slug from domain
* Improving orgDomains util
* Host comes with port
* Update useRouterQuery.ts
* Feedback
* Feedback
* Feedback
* Feedback: SSR for user event-types to have org context
* chore: Cache node_modules (#9492)
* Adding check for cache hit
* Adding a separate install step first
* Put the restore cache steps back
* Revert the uses type for restoring cache
* Added step to restore nm cache
* Removed the cache-hit check
* Comments and naming
* Removed extra install command
* Updated the name of the linting step to be more clear
* Removes the need for useEffect here
* Feedback
* Feedback
* Cookie domain needs a dot
* Type fix
* Update apps/web/public/static/locales/en/common.json
Co-authored-by: Omar López <zomars@me.com>
* Update packages/emails/src/templates/OrganizationAccountVerifyEmail.tsx
* Feedback
---------
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: Efraín Rochín <roae.85@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
2023-06-14 21:40:20 +00:00
|
|
|
"PROJECT_ID_VERCEL",
|
2023-03-17 21:14:12 +00:00
|
|
|
"QUICK",
|
|
|
|
"RAILWAY_STATIC_URL",
|
|
|
|
"RENDER_EXTERNAL_URL",
|
|
|
|
"SALESFORCE_CONSUMER_KEY",
|
|
|
|
"SALESFORCE_CONSUMER_SECRET",
|
|
|
|
"SAML_ADMINS",
|
|
|
|
"SAML_CLIENT_SECRET_VERIFIER",
|
|
|
|
"SAML_DATABASE_URL",
|
|
|
|
"SEND_FEEDBACK_EMAIL",
|
|
|
|
"SENDGRID_API_KEY",
|
|
|
|
"SENDGRID_EMAIL",
|
|
|
|
"SENDGRID_SYNC_API_KEY",
|
|
|
|
"SLACK_CLIENT_ID",
|
|
|
|
"SLACK_CLIENT_SECRET",
|
|
|
|
"SLACK_SIGNING_SECRET",
|
|
|
|
"STRIPE_CLIENT_ID",
|
|
|
|
"STRIPE_PRIVATE_KEY",
|
|
|
|
"STRIPE_PRODUCT_ID_ESSENTIALS",
|
|
|
|
"STRIPE_PRODUCT_ID_SCALE",
|
|
|
|
"STRIPE_PRODUCT_ID_STARTER",
|
|
|
|
"STRIPE_WEBHOOK_SECRET",
|
|
|
|
"TANDEM_BASE_URL",
|
|
|
|
"TANDEM_CLIENT_ID",
|
|
|
|
"TANDEM_CLIENT_SECRET",
|
feat: Organizations (#8993)
* Initial commit
* Adding feature flag
* feat: Orgs Schema Changing `scopedMembers` to `orgUsers` (#9209)
* Change scopedMembers to orgMembers
* Change to orgUsers
* Letting duplicate slugs for teams to support orgs
* Covering null on unique clauses
* Supporting having the orgId in the session cookie
* feat: organization event type filter (#9253)
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* Missing changes to support orgs schema changes
* feat: Onboarding process to create an organization (#9184)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Making sure we check requestedSlug now
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: [CAL-1816] Organization subdomain support (#9345)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* Covering users and subteams, excluding non-org users
* Unpublished teams shows correctly
* Create subdomain in Vercel
* feedback
* Renaming Vercel env vars
* Vercel domain check before creation
* Supporting cal-staging.com
* Change to have vercel detect it
* vercel domain check data message error
* Remove check domain
* Making sure we check requestedSlug now
* Feedback and unneeded code
* Reverting unneeded changes
* Unneeded changes
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Vercel subdomain creation in PROD only
* Making sure we let localhost still work
* Feedback
* Type check fixes
* feat: Organization branding in side menu (#9279)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Making sure we show the set up profile on org only
* Profile username availability rely on org hook
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: Organization support for event types page (#9449)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Processing orgs and children as profile options
* Reverting change not belonging to this PR
* Making sure we show the set up profile on org only
* Removing console.log
* Comparing memberships to choose the highest one
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Type errors
* Refactor and type fixes
* Update orgDomains.ts
* Feedback
* Reverting
* NIT
* fix issue getting org slug from domain
* Improving orgDomains util
* Host comes with port
* Update useRouterQuery.ts
* Feedback
* Feedback
* Feedback
* Feedback: SSR for user event-types to have org context
* chore: Cache node_modules (#9492)
* Adding check for cache hit
* Adding a separate install step first
* Put the restore cache steps back
* Revert the uses type for restoring cache
* Added step to restore nm cache
* Removed the cache-hit check
* Comments and naming
* Removed extra install command
* Updated the name of the linting step to be more clear
* Removes the need for useEffect here
* Feedback
* Feedback
* Cookie domain needs a dot
* Type fix
* Update apps/web/public/static/locales/en/common.json
Co-authored-by: Omar López <zomars@me.com>
* Update packages/emails/src/templates/OrganizationAccountVerifyEmail.tsx
* Feedback
---------
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: Efraín Rochín <roae.85@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
2023-06-14 21:40:20 +00:00
|
|
|
"TEAM_ID_VERCEL",
|
2023-03-17 21:14:12 +00:00
|
|
|
"TELEMETRY_DEBUG",
|
|
|
|
"TWILIO_MESSAGING_SID",
|
|
|
|
"TWILIO_PHONE_NUMBER",
|
|
|
|
"TWILIO_SID",
|
|
|
|
"TWILIO_TOKEN",
|
|
|
|
"TWILIO_VERIFY_SID",
|
|
|
|
"VERCEL_ENV",
|
|
|
|
"VERCEL_URL",
|
|
|
|
"VITAL_API_KEY",
|
|
|
|
"VITAL_DEVELOPMENT_MODE",
|
|
|
|
"VITAL_REGION",
|
|
|
|
"VITAL_WEBHOOK_SECRET",
|
|
|
|
"ZAPIER_INVITE_LINK",
|
|
|
|
"ZOHOCRM_CLIENT_ID",
|
|
|
|
"ZOHOCRM_CLIENT_SECRET",
|
|
|
|
"ZOOM_CLIENT_ID",
|
feat: Organizations (#8993)
* Initial commit
* Adding feature flag
* feat: Orgs Schema Changing `scopedMembers` to `orgUsers` (#9209)
* Change scopedMembers to orgMembers
* Change to orgUsers
* Letting duplicate slugs for teams to support orgs
* Covering null on unique clauses
* Supporting having the orgId in the session cookie
* feat: organization event type filter (#9253)
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* Missing changes to support orgs schema changes
* feat: Onboarding process to create an organization (#9184)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Making sure we check requestedSlug now
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: [CAL-1816] Organization subdomain support (#9345)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* Covering users and subteams, excluding non-org users
* Unpublished teams shows correctly
* Create subdomain in Vercel
* feedback
* Renaming Vercel env vars
* Vercel domain check before creation
* Supporting cal-staging.com
* Change to have vercel detect it
* vercel domain check data message error
* Remove check domain
* Making sure we check requestedSlug now
* Feedback and unneeded code
* Reverting unneeded changes
* Unneeded changes
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Vercel subdomain creation in PROD only
* Making sure we let localhost still work
* Feedback
* Type check fixes
* feat: Organization branding in side menu (#9279)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Making sure we show the set up profile on org only
* Profile username availability rely on org hook
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Update apps/web/pages/team/[slug].tsx
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* feat: Organization support for event types page (#9449)
* Desktop first banner, mobile pending
* Removing dead code and img
* WIP
* Adds Email verification template+translations for organizations (#9202)
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Step 2 done, avatar not working
* Covering null on unique clauses
* Onboarding admins step
* Last step to create teams
* Moving change password handler, improving verifying code flow
* Clearing error before submitting
* Reverting email testing api changes
* Reverting having the banner for now
* Consistent exported components
* Remove unneeded files from banner
* Removing uneeded code
* Fixing avatar selector
* Org branding provider used in shell sidebar
* Using meta component for head/descr
* Missing i18n strings
* Feedback
* Making an org avatar (temp)
* Using org avatar (temp)
* Not showing org logo if not set
* User onboarding with org branding (slug)
* Check for subteams slug clashes with usernames
* Fixing create teams onsuccess
* feedback
* Feedback
* Org public profile
* Public profiles for team event types
* Added setup profile alert
* Using org avatar on subteams avatar
* Processing orgs and children as profile options
* Reverting change not belonging to this PR
* Making sure we show the set up profile on org only
* Removing console.log
* Comparing memberships to choose the highest one
---------
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
* Type errors
* Refactor and type fixes
* Update orgDomains.ts
* Feedback
* Reverting
* NIT
* fix issue getting org slug from domain
* Improving orgDomains util
* Host comes with port
* Update useRouterQuery.ts
* Feedback
* Feedback
* Feedback
* Feedback: SSR for user event-types to have org context
* chore: Cache node_modules (#9492)
* Adding check for cache hit
* Adding a separate install step first
* Put the restore cache steps back
* Revert the uses type for restoring cache
* Added step to restore nm cache
* Removed the cache-hit check
* Comments and naming
* Removed extra install command
* Updated the name of the linting step to be more clear
* Removes the need for useEffect here
* Feedback
* Feedback
* Cookie domain needs a dot
* Type fix
* Update apps/web/public/static/locales/en/common.json
Co-authored-by: Omar López <zomars@me.com>
* Update packages/emails/src/templates/OrganizationAccountVerifyEmail.tsx
* Feedback
---------
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: Efraín Rochín <roae.85@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
2023-06-14 21:40:20 +00:00
|
|
|
"ZOOM_CLIENT_SECRET"
|
2022-08-11 19:17:56 +00:00
|
|
|
]
|
2022-02-09 22:17:10 +00:00
|
|
|
}
|