2023-07-19 15:18:31 +00:00
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
2022-10-12 12:52:59 +00:00
|
|
|
import type { GetServerSidePropsContext } from "next";
|
|
|
|
import { signIn } from "next-auth/react";
|
2023-08-02 09:35:48 +00:00
|
|
|
import { useSearchParams } from "next/navigation";
|
2023-04-05 18:14:46 +00:00
|
|
|
import type { CSSProperties } from "react";
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { SubmitHandler } from "react-hook-form";
|
|
|
|
import { FormProvider, useForm } from "react-hook-form";
|
2023-05-12 12:52:09 +00:00
|
|
|
import { z } from "zod";
|
2022-10-12 12:52:59 +00:00
|
|
|
|
2023-05-12 12:52:09 +00:00
|
|
|
import { checkPremiumUsername } from "@calcom/features/ee/common/lib/checkPremiumUsername";
|
2023-07-03 08:06:12 +00:00
|
|
|
import { getOrgFullDomain } from "@calcom/features/ee/organizations/lib/orgDomains";
|
2022-10-18 20:34:32 +00:00
|
|
|
import { isSAMLLoginEnabled } from "@calcom/features/ee/sso/lib/saml";
|
2023-06-07 07:27:48 +00:00
|
|
|
import { useFlagMap } from "@calcom/features/flags/context/provider";
|
2023-06-05 09:08:16 +00:00
|
|
|
import { getFeatureFlagMap } from "@calcom/features/flags/server/utils";
|
2023-05-12 12:52:09 +00:00
|
|
|
import { IS_SELF_HOSTED, WEBAPP_URL } from "@calcom/lib/constants";
|
2022-10-12 12:52:59 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2022-12-16 20:40:20 +00:00
|
|
|
import { collectPageParameters, telemetryEventTypes, useTelemetry } from "@calcom/lib/telemetry";
|
2023-07-03 08:06:12 +00:00
|
|
|
import { teamMetadataSchema } from "@calcom/prisma/zod-utils";
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { inferSSRProps } from "@calcom/types/inferSSRProps";
|
2023-01-26 22:51:03 +00:00
|
|
|
import { Alert, Button, EmailField, HeadSeo, PasswordField, TextField } from "@calcom/ui";
|
|
|
|
|
2023-04-18 18:45:32 +00:00
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
|
|
|
2023-01-26 22:51:03 +00:00
|
|
|
import { IS_GOOGLE_LOGIN_ENABLED } from "../server/lib/constants";
|
|
|
|
import { ssrInit } from "../server/lib/ssr";
|
2022-10-12 12:52:59 +00:00
|
|
|
|
2023-07-19 15:18:31 +00:00
|
|
|
const signupSchema = z.object({
|
|
|
|
username: z.string().refine((value) => !value.includes("+"), {
|
|
|
|
message: "String should not contain a plus symbol (+).",
|
|
|
|
}),
|
|
|
|
email: z.string().email(),
|
|
|
|
password: z.string().min(7),
|
|
|
|
language: z.string().optional(),
|
|
|
|
token: z.string().optional(),
|
|
|
|
apiError: z.string().optional(), // Needed to display API errors doesnt get passed to the API
|
|
|
|
});
|
|
|
|
|
|
|
|
type FormValues = z.infer<typeof signupSchema>;
|
2022-10-12 12:52:59 +00:00
|
|
|
|
2023-07-03 08:06:12 +00:00
|
|
|
type SignupProps = inferSSRProps<typeof getServerSideProps>;
|
|
|
|
|
|
|
|
export default function Signup({ prepopulateFormValues, token, orgSlug }: SignupProps) {
|
2023-08-02 09:35:48 +00:00
|
|
|
const searchParams = useSearchParams();
|
|
|
|
const telemetry = useTelemetry();
|
2023-06-07 07:27:48 +00:00
|
|
|
const { t, i18n } = useLocale();
|
|
|
|
const flags = useFlagMap();
|
2022-10-12 12:52:59 +00:00
|
|
|
const methods = useForm<FormValues>({
|
2023-07-19 15:18:31 +00:00
|
|
|
resolver: zodResolver(signupSchema),
|
2022-10-12 12:52:59 +00:00
|
|
|
defaultValues: prepopulateFormValues,
|
|
|
|
});
|
|
|
|
const {
|
|
|
|
register,
|
|
|
|
formState: { errors, isSubmitting },
|
|
|
|
} = methods;
|
|
|
|
|
|
|
|
const handleErrors = async (resp: Response) => {
|
|
|
|
if (!resp.ok) {
|
|
|
|
const err = await resp.json();
|
|
|
|
throw new Error(err.message);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const signUp: SubmitHandler<FormValues> = async (data) => {
|
|
|
|
await fetch("/api/auth/signup", {
|
|
|
|
body: JSON.stringify({
|
|
|
|
...data,
|
2023-06-07 07:27:48 +00:00
|
|
|
language: i18n.language,
|
feat: org invite billing (#9291)
* Initial commit
* Adding feature flag
* Desktop first banner, mobile pending
* Removing dead code and img
* AppInstallButtonBase
* WIP
* Adds Email verification template+translations for organizations (#9202)
* feat: Orgs Schema Changing `scopedMembers` to `orgUsers` (#9209)
* Change scopedMembers to orgMembers
* Change to orgUsers
* First step done
* Merge branch 'feat/organizations-onboarding' of github.com:calcom/cal.com into feat/organizations-onboarding
* Session logic to show org label
* Step 2 done, avatar not working
* List orgs and list teams specific if orgs exist
* Conditionally show org - fix settings layout - add labels for all pages
* Profile Page + update
* Org specific team creation
* appearance page
* Ensure members cant of org cant update settings in UI
* Fix update handler imports
* hide billing on sub teams
* Update profile slug page
* Letting duplicate slugs for teams to support orgs
* Add slug coliisions for org
* Covering null on unique clauses
* Covering null on unique clauses
* Extract to utils
* Update settings to use subdomain path in team url , team + org
* Supporting having the orgId in the session cookie
* Onboarding admins step
* Last step to create teams
* Update handler comments
* Upgrade ORG banner - disabled team banner for child teams
* Handle publishing ORGS
* Fix licenese issue
* Update packages/trpc/server/routers/viewer/teams/create.handler.ts
* Split into function calls to make this file more explisit
* Update parents stripe sub not teamID
* 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
* Create org membership also - billing portal page
* A11ly
* Hide create team if no valid permisisons
* Get Org members router
* Handle updating subscription if orgId
* Fix double upgrade banner
* Update constants
* Feedback
* Copy change
* Making an org avatar (temp)
* Add slug colission detection for user and team name
* Fix Import
* Remove update password func
* Fix module import over relative
* feat: organization event type filter (#9253)
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* Missing changes to support orgs schema changes
* Fix import again
* Throw no team found before auth error
* Check if invited found user is already in differnt org
* Move to for of loop to throw errors in usenamelist
* Remove app install button sa its in 9337
* Remove i18n key not being used
* 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
* Fix router
* feat: organization settings general and members page (#9266)
* feat: organization settings general page
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* feat: add members page
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* chore: remove
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* fix: use invalidate
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* fix: delete mutation
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* fix: remove organization id
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* chore
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* fix: use zod schema
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
---------
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
* Type fixes
* Use org Stripe product when upgrading
* Removed unused code
* Reverting changes
* Update UsernameTextfield.tsx
* More reverts
* Update next-auth-options.ts
* Update common.json
* Type fixes
* Include invite token for orgs
* Update org schema
* Make token settings optional as it isnt used in orgs yet
* Reverts
* remove yarn.lock from commit
* Fix types
* feat: orgs unverified (#9415)
Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
Co-authored-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
* Fix wrong banner being displayed
* Type fix
* Fix type issues
* Update packages/trpc/server/routers/viewer/teams/inviteMember.handler.ts
Co-authored-by: alannnc <alannnc@gmail.com>
* fix missing input on trpc query
* Fix for parentId value for createProvisionalMembership
---------
Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Leo Giovanetti <hello@leog.me>
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: zomars <zomars@me.com>
Co-authored-by: Joe Au-Yeung <j.auyeung419@gmail.com>
Co-authored-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
Co-authored-by: alannnc <alannnc@gmail.com>
2023-07-02 18:40:12 +00:00
|
|
|
token,
|
2022-10-12 12:52:59 +00:00
|
|
|
}),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
})
|
|
|
|
.then(handleErrors)
|
2022-11-04 15:20:17 +00:00
|
|
|
.then(async () => {
|
2023-02-10 09:53:03 +00:00
|
|
|
telemetry.event(telemetryEventTypes.signup, collectPageParameters());
|
2023-06-07 07:27:48 +00:00
|
|
|
const verifyOrGettingStarted = flags["email-verification"] ? "auth/verify-email" : "getting-started";
|
2022-12-16 20:40:20 +00:00
|
|
|
await signIn<"credentials">("credentials", {
|
|
|
|
...data,
|
2023-07-24 21:11:25 +00:00
|
|
|
callbackUrl: `${
|
2023-08-02 09:35:48 +00:00
|
|
|
searchParams?.get("callbackUrl")
|
|
|
|
? `${WEBAPP_URL}/${searchParams.get("callbackUrl")}`
|
2023-07-24 21:11:25 +00:00
|
|
|
: `${WEBAPP_URL}/${verifyOrGettingStarted}`
|
|
|
|
}?from=signup`,
|
2022-11-04 15:20:17 +00:00
|
|
|
});
|
|
|
|
})
|
2022-10-12 12:52:59 +00:00
|
|
|
.catch((err) => {
|
|
|
|
methods.setError("apiError", { message: err.message });
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2023-07-12 21:24:47 +00:00
|
|
|
<>
|
2022-10-12 12:52:59 +00:00
|
|
|
<div
|
2023-05-12 12:52:09 +00:00
|
|
|
className="bg-muted flex min-h-screen flex-col justify-center "
|
2023-04-05 18:14:46 +00:00
|
|
|
style={
|
|
|
|
{
|
|
|
|
"--cal-brand": "#111827",
|
|
|
|
"--cal-brand-emphasis": "#101010",
|
|
|
|
"--cal-brand-text": "white",
|
2023-04-08 16:50:17 +00:00
|
|
|
"--cal-brand-subtle": "#9CA3AF",
|
2023-04-05 18:14:46 +00:00
|
|
|
} as CSSProperties
|
|
|
|
}
|
2022-10-12 12:52:59 +00:00
|
|
|
aria-labelledby="modal-title"
|
|
|
|
role="dialog"
|
|
|
|
aria-modal="true">
|
|
|
|
<HeadSeo title={t("sign_up")} description={t("sign_up")} />
|
|
|
|
<div className="sm:mx-auto sm:w-full sm:max-w-md">
|
2023-04-05 18:14:46 +00:00
|
|
|
<h2 className="font-cal text-emphasis text-center text-3xl font-extrabold">
|
2022-10-12 12:52:59 +00:00
|
|
|
{t("create_your_account")}
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
<div className="mt-8 sm:mx-auto sm:w-full sm:max-w-md">
|
2023-05-12 12:52:09 +00:00
|
|
|
<div className="bg-default mx-2 p-6 shadow sm:rounded-lg lg:p-8">
|
2022-10-12 12:52:59 +00:00
|
|
|
<FormProvider {...methods}>
|
2023-04-18 01:58:54 +00:00
|
|
|
<form
|
|
|
|
onSubmit={(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
|
|
if (methods.formState?.errors?.apiError) {
|
|
|
|
methods.clearErrors("apiError");
|
|
|
|
}
|
|
|
|
methods.handleSubmit(signUp)(event);
|
|
|
|
}}
|
|
|
|
className="bg-default space-y-6">
|
2022-10-12 12:52:59 +00:00
|
|
|
{errors.apiError && <Alert severity="error" message={errors.apiError?.message} />}
|
2023-05-12 12:52:09 +00:00
|
|
|
<div className="space-y-4">
|
2022-10-12 12:52:59 +00:00
|
|
|
<TextField
|
2023-07-03 08:06:12 +00:00
|
|
|
addOnLeading={
|
|
|
|
orgSlug
|
|
|
|
? getOrgFullDomain(orgSlug, { protocol: false })
|
|
|
|
: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/`
|
|
|
|
}
|
2022-10-12 12:52:59 +00:00
|
|
|
{...register("username")}
|
|
|
|
required
|
|
|
|
/>
|
2023-01-14 00:21:57 +00:00
|
|
|
<EmailField
|
|
|
|
{...register("email")}
|
|
|
|
disabled={prepopulateFormValues?.email}
|
2023-04-05 18:14:46 +00:00
|
|
|
className="disabled:bg-emphasis disabled:hover:cursor-not-allowed"
|
2023-01-14 00:21:57 +00:00
|
|
|
/>
|
2022-10-12 12:52:59 +00:00
|
|
|
<PasswordField
|
|
|
|
labelProps={{
|
2023-04-05 18:14:46 +00:00
|
|
|
className: "block text-sm font-medium text-default",
|
2022-10-12 12:52:59 +00:00
|
|
|
}}
|
|
|
|
{...register("password")}
|
2023-05-12 12:52:09 +00:00
|
|
|
hintErrors={["caplow", "min", "num"]}
|
2023-04-05 18:14:46 +00:00
|
|
|
className="border-default mt-1 block w-full rounded-md border px-3 py-2 shadow-sm focus:border-black focus:outline-none focus:ring-black sm:text-sm"
|
2022-10-12 12:52:59 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="flex space-x-2 rtl:space-x-reverse">
|
2023-05-12 12:52:09 +00:00
|
|
|
<Button type="submit" loading={isSubmitting} className="w-full justify-center">
|
2022-10-12 12:52:59 +00:00
|
|
|
{t("create_account")}
|
|
|
|
</Button>
|
2023-05-12 12:52:09 +00:00
|
|
|
{!token && (
|
|
|
|
<Button
|
|
|
|
color="secondary"
|
|
|
|
className="w-full justify-center"
|
|
|
|
onClick={() =>
|
|
|
|
signIn("Cal.com", {
|
2023-08-02 09:35:48 +00:00
|
|
|
callbackUrl: searchParams?.get("callbackUrl")
|
|
|
|
? `${WEBAPP_URL}/${searchParams.get("callbackUrl")}`
|
2023-05-12 12:52:09 +00:00
|
|
|
: `${WEBAPP_URL}/getting-started`,
|
|
|
|
})
|
|
|
|
}>
|
|
|
|
{t("login_instead")}
|
|
|
|
</Button>
|
|
|
|
)}
|
2022-10-12 12:52:59 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</FormProvider>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-07-12 21:24:47 +00:00
|
|
|
</>
|
2022-10-12 12:52:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getServerSideProps = async (ctx: GetServerSidePropsContext) => {
|
2023-06-05 09:08:16 +00:00
|
|
|
const prisma = await import("@calcom/prisma").then((mod) => mod.default);
|
|
|
|
const flags = await getFeatureFlagMap(prisma);
|
2022-10-12 12:52:59 +00:00
|
|
|
const ssr = await ssrInit(ctx);
|
2023-05-12 12:52:09 +00:00
|
|
|
const token = z.string().optional().parse(ctx.query.token);
|
2022-10-12 12:52:59 +00:00
|
|
|
|
|
|
|
const props = {
|
|
|
|
isGoogleLoginEnabled: IS_GOOGLE_LOGIN_ENABLED,
|
|
|
|
isSAMLLoginEnabled,
|
|
|
|
trpcState: ssr.dehydrate(),
|
|
|
|
prepopulateFormValues: undefined,
|
|
|
|
};
|
|
|
|
|
2023-06-05 09:08:16 +00:00
|
|
|
if (process.env.NEXT_PUBLIC_DISABLE_SIGNUP === "true" || flags["disable-signup"]) {
|
|
|
|
console.log({ flag: flags["disable-signup"] });
|
|
|
|
|
2023-01-14 00:42:13 +00:00
|
|
|
return {
|
|
|
|
notFound: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-10-12 12:52:59 +00:00
|
|
|
// no token given, treat as a normal signup without verification token
|
|
|
|
if (!token) {
|
|
|
|
return {
|
2022-11-04 15:20:17 +00:00
|
|
|
props: JSON.parse(JSON.stringify(props)),
|
2022-10-12 12:52:59 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const verificationToken = await prisma.verificationToken.findUnique({
|
|
|
|
where: {
|
|
|
|
token,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!verificationToken || verificationToken.expires < new Date()) {
|
|
|
|
return {
|
|
|
|
notFound: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const existingUser = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
AND: [
|
|
|
|
{
|
|
|
|
email: verificationToken?.identifier,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
emailVerified: {
|
|
|
|
not: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (existingUser) {
|
|
|
|
return {
|
|
|
|
redirect: {
|
|
|
|
permanent: false,
|
|
|
|
destination: "/auth/login?callbackUrl=" + `${WEBAPP_URL}/${ctx.query.callbackUrl}`,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-05-12 12:52:09 +00:00
|
|
|
const guessUsernameFromEmail = (email: string) => {
|
|
|
|
const [username] = email.split("@");
|
|
|
|
return username;
|
|
|
|
};
|
|
|
|
|
|
|
|
let username = guessUsernameFromEmail(verificationToken.identifier);
|
|
|
|
|
2023-07-03 08:06:12 +00:00
|
|
|
const orgInfo = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
email: verificationToken?.identifier,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
organization: {
|
|
|
|
select: {
|
|
|
|
slug: true,
|
|
|
|
metadata: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const userOrgMetadata = teamMetadataSchema.parse(orgInfo?.organization?.metadata ?? {});
|
|
|
|
|
2023-05-12 12:52:09 +00:00
|
|
|
if (!IS_SELF_HOSTED) {
|
|
|
|
// Im not sure we actually hit this because of next redirects signup to website repo - but just in case this is pretty cool :)
|
|
|
|
const { available, suggestion } = await checkPremiumUsername(username);
|
|
|
|
|
|
|
|
username = available ? username : suggestion || username;
|
|
|
|
}
|
|
|
|
|
2023-08-10 09:50:43 +00:00
|
|
|
// Transform all + to - in username
|
|
|
|
username = username.replace(/\+/g, "-");
|
|
|
|
|
2022-10-12 12:52:59 +00:00
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
...props,
|
2023-05-12 12:52:09 +00:00
|
|
|
token,
|
2022-10-12 12:52:59 +00:00
|
|
|
prepopulateFormValues: {
|
|
|
|
email: verificationToken.identifier,
|
2023-05-12 12:52:09 +00:00
|
|
|
username,
|
2022-10-12 12:52:59 +00:00
|
|
|
},
|
2023-07-03 08:06:12 +00:00
|
|
|
orgSlug: (orgInfo?.organization?.slug || userOrgMetadata?.requestedSlug) ?? null,
|
2022-10-12 12:52:59 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
2023-04-05 18:14:46 +00:00
|
|
|
|
|
|
|
Signup.isThemeSupported = false;
|
2023-04-18 18:45:32 +00:00
|
|
|
Signup.PageWrapper = PageWrapper;
|