The provided image shows trigger_daily_alerts method which I want to override in my custom app.
I am using the below in hooks.py.
override_methods = {
“frappe.email.doctype.notification.notification.trigger_daily_alerts”: “notification.custom_notification.trigger_daily_alerts”
}
But, I am not able to override this method as it is neither called by any whitelist method nor present in any class nor itself is a whitelist method.