-
Notifications
You must be signed in to change notification settings - Fork 0
feat(#2147): add reminder UI — email checkbox and settings dialog fields #11
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
d9e4e12
3e540c9
0703a16
9cd32e8
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 |
|---|---|---|
|
|
@@ -72,7 +72,7 @@ export const ZDocumentEmailSettingsSchema = z | |
| .describe( | ||
| 'Whether to send a digest email to the document owner when reminders are sent to unsigned recipients. Aggregates all pending documents for the team into a single email.', | ||
| ) | ||
| .default(true), | ||
| .default(false), | ||
|
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. Default flip likely breaks “opt-out” semantics and legacy behavior Line 75 and Line 118 switch Suggested fix (preserve opt-out behavior)- .default(false),
+ .default(true),
...
- ownerReminderDigest: false,
+ ownerReminderDigest: true,Also applies to: 118-118 🤖 Prompt for AI Agents |
||
| }) | ||
| .strip() | ||
| .catch(() => ({ ...DEFAULT_DOCUMENT_EMAIL_SETTINGS })); | ||
|
|
@@ -115,5 +115,5 @@ export const DEFAULT_DOCUMENT_EMAIL_SETTINGS: TDocumentEmailSettings = { | |
| ownerDocumentCompleted: true, | ||
| ownerRecipientExpired: true, | ||
| ownerDocumentCreated: true, | ||
| ownerReminderDigest: true, | ||
| ownerReminderDigest: false, | ||
| }; | ||
Uh oh!
There was an error while loading. Please reload this page.