* added layouts for moving teams step * added admin section for org creation step * extended org creation to also move existing teams * wip * wip * wip * further changes * Add checkout for org in onboarding * Fix ts errors * Self review feedback * Self review addressed * Fix unit tests * Fix ts error * Seans feedback addressed * feat: fix correct accounts pending * fix: unit tests for new invite member permissions * tests: org admin onboarding tests for existing user * tests: Inital user self serve flow * chore: update teamAndUserFixture to create X amount of teams * chore: add testId to card actionButton * test: add test-Id to continue or checkout button * tests: add tests for migrating existing teams * feat: match new designs * fix: isAdminCheck * chore: fix pricing copy * fix: flacky tests * Fix tests? * More test fixes * Check all checkboxes * Fix type error * Fix failing test and typescript issues * Fix unpaid org allowing auto-add users * Add self-serve flag * Skip tests --------- Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Hariom <hariombalhara@gmail.com> Co-authored-by: sean-brydon <sean@cal.com> Co-authored-by: Joe Au-Yeung <j.auyeung419@gmail.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: Omar López <zomars@me.com>
69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
import { sendTeamInviteEmail } from "@calcom/emails";
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { getTranslation } from "@calcom/lib/server/i18n";
|
|
import { prisma } from "@calcom/prisma";
|
|
import type { TrpcSessionUser } from "@calcom/trpc/server/trpc";
|
|
|
|
import { checkPermissions, getTeamOrThrow } from "./inviteMember/utils";
|
|
import type { TResendInvitationInputSchema } from "./resendInvitation.schema";
|
|
|
|
type InviteMemberOptions = {
|
|
ctx: {
|
|
user: NonNullable<TrpcSessionUser>;
|
|
};
|
|
input: TResendInvitationInputSchema;
|
|
};
|
|
|
|
export const resendInvitationHandler = async ({ ctx, input }: InviteMemberOptions) => {
|
|
const team = await getTeamOrThrow(input.teamId);
|
|
|
|
await checkPermissions({
|
|
userId: ctx.user.id,
|
|
teamId:
|
|
ctx.user.organization.id && ctx.user.organization.isOrgAdmin ? ctx.user.organization.id : input.teamId,
|
|
isOrg: input.isOrg,
|
|
});
|
|
|
|
const verificationToken = await prisma.verificationToken.findFirst({
|
|
where: {
|
|
identifier: input.email,
|
|
teamId: input.teamId,
|
|
},
|
|
select: {
|
|
token: true,
|
|
},
|
|
});
|
|
|
|
const inviteTeamOptions = {
|
|
joinLink: `${WEBAPP_URL}/auth/login?callbackUrl=/settings/teams`,
|
|
isCalcomMember: true,
|
|
isAutoJoin: false,
|
|
};
|
|
|
|
if (verificationToken) {
|
|
// Token only exists if user is CAL user but hasn't completed onboarding.
|
|
inviteTeamOptions.joinLink = `${WEBAPP_URL}/signup?token=${verificationToken.token}&callbackUrl=/getting-started`;
|
|
inviteTeamOptions.isCalcomMember = false;
|
|
}
|
|
|
|
const translation = await getTranslation(input.language ?? "en", "common");
|
|
|
|
await sendTeamInviteEmail({
|
|
language: translation,
|
|
from: ctx.user.name || `${team.name}'s admin`,
|
|
to: input.email,
|
|
teamName: team.name,
|
|
...inviteTeamOptions,
|
|
isOrg: input.isOrg,
|
|
parentTeamName: team?.parent?.name,
|
|
// We don't know at his moment if this user was an existing user or a new user as it is a resend. So, we assume it's a new user and we can avoid sending the prevLink and newLink.
|
|
isExistingUserMovedToOrg: false,
|
|
prevLink: null,
|
|
newLink: null,
|
|
});
|
|
|
|
return input;
|
|
};
|
|
|
|
export default resendInvitationHandler;
|