Conversation
* feat: hubspot show owner availability for round robin * fix: translations * fix: use app name variable for text
* fix oauth flow with sign up * extract key as const variable --------- Co-authored-by: CarinaWolli <wollencarina@gmail.com>
* calendar switch * wip * wip * wip * fix
* upgrade next and react versions * upgrade next and react versions * upgrade next and react versions
* fix: use FeatureOptInService for bookings-v3 check * refactor: simplify FeatureOptInService API and fix bookings page - Add resolveFeatureStates method that takes only userId and featureIds - Update listFeaturesForUser to take only userId parameter - Remove getUserOrgAndTeamIds from _router.ts (now internal to service) - Fix bookings page to use new resolveFeatureStates method - Parallelize getUserFeaturesStatus and resolveFeatureStates calls Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * check session?.user?.id first * remove comment --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
* remove acount dropdown on consent screen * change button back to go back * add missing translations * fix avatar * code clean up * add translation --------- Co-authored-by: CarinaWolli <wollencarina@gmail.com>
…lizing 400+ parameters (#27319) PERFORMANCE: The bookings/get endpoint was taking 24s due to materializing 400+ email addresses as individual parameters in WHERE IN clauses. This caused massive UNION queries that overwhelmed the database. Changes: - Replace IN clauses with Kysely subqueries for queries 4, 5, 6, and 7 - Query 4 & 5: Use subquery to get emails from users via Membership table - Query 6: Use subquery to get event type IDs from EventType table - Query 7: Use subquery to get user IDs from Membership table - Only fetch user IDs when needed for userIds filter validation - Add new getUserIdsFromTeamIds function (lighter version without emails) Before: WHERE email IN ($1, $2, ..., $400+) - passes 400+ parameters After: WHERE email IN (SELECT email FROM users JOIN Membership...) - passes only team IDs This reduces parameter count from 400+ to typically 1-10 team IDs, letting the database optimize the query execution plan. Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )