feat: Add natural language date parser for snooze functionality

This commit is contained in:
iamsivin
2026-02-19 16:41:23 +05:30
parent 6902969a09
commit ef79c36f78
9 changed files with 1769 additions and 5 deletions
@@ -100,6 +100,8 @@ export default {
onCmdSnoozeConversation(snoozeType) {
if (snoozeType === wootConstants.SNOOZE_OPTIONS.UNTIL_CUSTOM_TIME) {
this.showCustomTimeSnoozeModal = true;
} else if (typeof snoozeType === 'number') {
this.updateConversations('snoozed', snoozeType);
} else {
this.updateConversations('snoozed', findSnoozeTime(snoozeType) || null);
}