fix: ignore links while setting default notification templates in Settings (#29042)

This commit is contained in:
Rucha Mahabal
2021-12-27 15:16:58 +05:30
committed by GitHub
parent 1c2a8c679c
commit d0d82bc34a
2 changed files with 2 additions and 0 deletions

View File

@@ -23,4 +23,5 @@ def execute():
delivery_settings = frappe.get_doc("Delivery Settings")
delivery_settings.dispatch_template = _("Dispatch Notification")
delivery_settings.flags.ignore_links = True
delivery_settings.save()

View File

@@ -33,4 +33,5 @@ def execute():
hr_settings = frappe.get_doc('HR Settings')
hr_settings.interview_reminder_template = _('Interview Reminder')
hr_settings.feedback_reminder_notification_template = _('Interview Feedback Reminder')
hr_settings.flags.ignore_links = True
hr_settings.save()