Skip to content

Commit b957aa1

Browse files
committed
Remove deprecated invitation-code route
1 parent a998d6c commit b957aa1

File tree

3 files changed

+2
-164
lines changed

3 files changed

+2
-164
lines changed

apps/webapp/app/routes/invitation-code.tsx

Lines changed: 0 additions & 160 deletions
This file was deleted.

apps/webapp/app/utils/pathBuilder.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ export function confirmBasicDetailsPath() {
7373
return `/confirm-basic-details`;
7474
}
7575

76-
export function invitationCodePath() {
77-
return `/invitation-code`;
78-
}
79-
8076
export function acceptInvitePath(token: string) {
8177
return `/invite-accept?token=${token}`;
8278
}

packages/database/prisma/schema.prisma

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ model User {
4242
invitationCodeId String?
4343
}
4444

45+
// @deprecated This model is no longer used as the Cloud is out of private beta
46+
// Leaving it here for now for historical reasons
4547
model InvitationCode {
4648
id String @id @default(cuid())
4749
code String @unique

0 commit comments

Comments
 (0)