Skip to content

Commit

Permalink
Auto updated submodule references
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 5, 2024
1 parent 94d87ee commit d51a1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calcom
Submodule calcom updated 71 files
+8 −0 .env.example
+47 −79 .github/ISSUE_TEMPLATE/bug_report.yml
+42 −23 apps/api/v1/pages/api/bookings/[id]/_auth-middleware.ts
+14 −2 apps/api/v1/pages/api/event-types/[id]/_delete.ts
+4 −7 apps/api/v1/pages/api/event-types/_utils/checkParentEventOwnership.ts
+3 −7 apps/api/v1/pages/api/event-types/_utils/checkTeamEventEditPermission.ts
+1 −1 apps/api/v1/pages/api/teams/[teamId]/_auth-middleware.ts
+0 −3 apps/api/v1/test/docker-compose.yml
+284 −42 apps/api/v1/test/lib/bookings/_auth-middleware.integration-test.ts
+94 −0 apps/api/v1/test/lib/event-types/[id]/_delete.test.ts
+0 −2 apps/api/v2/docker-compose.yaml
+1 −1 apps/api/v2/package.json
+44 −1 apps/api/v2/src/ee/bookings/controllers/bookings.controller.e2e-spec.ts
+4 −0 apps/api/v2/src/ee/bookings/controllers/bookings.controller.ts
+6 −5 apps/api/v2/src/modules/organizations/repositories/organizations-teams.repository.ts
+192 −232 apps/api/v2/swagger/documentation.json
+8 −0 apps/web/abTest/middlewareFactory.ts
+19 −0 apps/web/app/future/auth/error/page.tsx
+5 −0 apps/web/app/future/auth/new/page.tsx
+16 −0 apps/web/app/future/auth/oauth2/authorize/page.tsx
+16 −0 apps/web/app/future/auth/platform/authorize/page.tsx
+1 −0 apps/web/app/future/auth/saml-idp/page.tsx
+4 −3 apps/web/lib/metadata.ts
+42 −0 apps/web/modules/auth/error/error-view.tsx
+177 −0 apps/web/modules/auth/oauth2/authorize-view.tsx
+126 −0 apps/web/modules/auth/platform/authorize-view.tsx
+23 −0 apps/web/modules/auth/saml-idp/saml-idp-view.tsx
+7 −50 apps/web/pages/auth/error.tsx
+4 −176 apps/web/pages/auth/oauth2/authorize.tsx
+4 −125 apps/web/pages/auth/platform/authorize.tsx
+1 −21 apps/web/pages/auth/saml-idp.tsx
+77 −0 apps/web/pages/icons.tsx
+10 −0 apps/web/playwright/icons.e2e.ts
+ apps/web/playwright/icons.e2e.ts-snapshots/icons--calcom-web-darwin.png
+ apps/web/playwright/icons.e2e.ts-snapshots/icons--calcom-web-linux.png
+131 −131 apps/web/public/icons/sprite.svg
+1 −0 apps/web/public/static/locales/ar/common.json
+1 −0 apps/web/public/static/locales/az/common.json
+1 −0 apps/web/public/static/locales/cs/common.json
+1 −0 apps/web/public/static/locales/da/common.json
+1 −0 apps/web/public/static/locales/de/common.json
+1 −0 apps/web/public/static/locales/es-419/common.json
+1 −0 apps/web/public/static/locales/es/common.json
+1 −0 apps/web/public/static/locales/fr/common.json
+1 −0 apps/web/public/static/locales/he/common.json
+1 −0 apps/web/public/static/locales/it/common.json
+1 −0 apps/web/public/static/locales/nl/common.json
+1 −0 apps/web/public/static/locales/pl/common.json
+1 −0 apps/web/public/static/locales/pt-BR/common.json
+1 −0 apps/web/public/static/locales/pt/common.json
+1 −0 apps/web/public/static/locales/ru/common.json
+1 −0 apps/web/public/static/locales/zh-CN/common.json
+8 −1 apps/web/scripts/vercel-production-deploy.sh
+14 −0 apps/web/server/lib/auth/error/getStaticProps.ts
+0 −3 apps/web/test/docker-compose.yml
+1 −0 i18n.lock
+0 −1 packages/app-store/googlecalendar/lib/CalendarService.ts
+9 −5 packages/app-store/office365calendar/lib/CalendarService.ts
+0 −1 packages/emails/docker-compose.yml
+6 −1 packages/features/bookings/lib/handleCancelBooking.ts
+3 −2 packages/features/ee/round-robin/roundRobinReassignment.ts
+3 −0 packages/platform/libraries/CHANGELOG.md
+4 −2 packages/platform/libraries/index.ts
+0 −1 packages/prisma/docker-compose.yml
+1 −0 packages/trpc/server/routers/viewer/workflows/activateEventType.handler.ts
+2 −0 packages/trpc/server/routers/viewer/workflows/util.ts
+10 −1 packages/ui/components/icon/Icon.tsx
+0 −4 packages/ui/components/icon/icon-list.mjs
+1 −0 packages/ui/scripts/build-icons.mjs
+14 −1 turbo.json
+5,677 −72 yarn.lock

0 comments on commit d51a1de

Please sign in to comment.