Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix: Grab booking organizer credentials when team admins request reschedule#24645

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Udit-takkar merged 25 commits intomainfromfix-request-reschedule-by-non-organizer
Nov 25, 2025
Merged
Changes from1 commit
Commits
Show all changes
25 commits
Select commitHold shift + click to select a range
f70cda5
Change arg name from `bookingUId` to `bookingUid`
joeauyeungOct 22, 2025
11ec0c4
Lint fix
joeauyeungOct 22, 2025
da47659
Use `BookingRepository` to find booking to reschedule
joeauyeungOct 22, 2025
ae136be
Move early return further up if no booking is found
joeauyeungOct 22, 2025
27c7b0a
Use `PermissionCheckService` if request rescheduling a team booking
joeauyeungOct 22, 2025
0b0f8ef
Remove redundent check
joeauyeungOct 22, 2025
aac9bd8
Remove redundent eventType query
joeauyeungOct 22, 2025
8af5203
Using `BookingRepository` to update the booking to rescheduled
joeauyeungOct 22, 2025
c998afd
Update type in `getUsersCredentialsIncludeServiceAccountKey` to only
joeauyeungOct 22, 2025
c2f810b
Get booking organizer credentials
joeauyeungOct 22, 2025
7b3061b
Type fixes
joeauyeungOct 22, 2025
3201583
test: Add tests for team admin request reschedule with organizer cred…
devin-ai-integration[bot]Oct 22, 2025
2beca4c
Merge branch
joeauyeungOct 28, 2025
c39ee0b
Merge branch 'main' into fix-request-reschedule-by-non-organizer
joeauyeungOct 28, 2025
f18d8df
Merge branch 'main' into fix-request-reschedule-by-non-organizer
joeauyeungOct 30, 2025
c5973cb
fix: Address code review comments for request reschedule
devin-ai-integration[bot]Oct 30, 2025
8e8209f
Merge branch 'main' into fix-request-reschedule-by-non-organizer
joeauyeungNov 7, 2025
d6b800c
Type fix
joeauyeungNov 7, 2025
52f1519
Merge branch 'main' into fix-request-reschedule-by-non-organizer
joeauyeungNov 10, 2025
af438b5
Merge branch 'main' into fix-request-reschedule-by-non-organizer
joeauyeungNov 11, 2025
b87567d
Remove businesss logic references from repository methods.
joeauyeungNov 20, 2025
1cb8be2
Move business logic to handler
joeauyeungNov 20, 2025
45c3612
Merge branch 'main' into fix-request-reschedule-by-non-organizer
joeauyeungNov 24, 2025
936146a
Type fix
joeauyeungNov 24, 2025
78d994e
Merge branch 'main' into fix-request-reschedule-by-non-organizer
Udit-takkarNov 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Remove redundent eventType query
  • Loading branch information
@joeauyeung
joeauyeung committedOct 22, 2025
commitaac9bd88a22662b52d6de8b7a861e9c62d2679fb

Some comments aren't visible on the classic Files Changed page.

View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -92,17 +92,8 @@ export const requestRescheduleHandler = async ({ ctx, input }: RequestReschedule
}

let event: Partial<EventType> = {};
if (bookingToReschedule.eventTypeId) {
event = await prisma.eventType.findUniqueOrThrow({
select: {
title: true,
schedulingType: true,
recurringEvent: true,
},
where: {
id: bookingToReschedule.eventTypeId,
},
});
if (bookingToReschedule.eventType) {
event = bookingToReschedule.eventType;
}
await prisma.booking.update({
where: {
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp