Files
lms/lms/patches/v2_0/delete_certificate_request_notification.py
2024-09-19 14:19:55 +05:30

12 lines
294 B
Python

import frappe
def execute():
delete_notification("Certificate Request Creation")
delete_notification("Certificate Request Reminder")
def delete_notification(notification_name):
if frappe.db.exists("Notification", notification_name):
frappe.db.delete("Notification", notification_name)