-
Notifications
You must be signed in to change notification settings - Fork 0
Honest invitation toasts, send caps, undeliverable tracking, workspace-scoped search #766
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
24f7310
0fc05a6
8f7ea6a
b9aefec
8667eff
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| ALTER TABLE `project_invitations` ADD `emailSentAt` integer;--> statement-breakpoint | ||
| ALTER TABLE `project_invitations` ADD `emailStatus` text;--> statement-breakpoint | ||
| CREATE UNIQUE INDEX `project_invitations_projectId_email_uidx` ON `project_invitations` (`projectId`,`email`); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🗄️ Data Integrity & Integration | 🟠 Major | 🏗️ Heavy lift Resolve existing duplicate invitations before creating this index. Line 3 fails the migration if any existing 🤖 Prompt for AI Agents |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟠 Major | 🏗️ Heavy lift
Separate email delivery from in-app delivery.
Lines 14-18 define
not_sentas always having an in-app delivery path.createInvitationcreates a notification only when an account matches the address. For an unknown address and a queue failure, the invitee receives neither email nor notification.AddMemberModalthen tells the inviter that notifications provide an acceptance path.Return an independent notification-delivery flag, or use separate delivery states.
🤖 Prompt for AI Agents