()
| 18 | |
| 19 | |
| 20 | def handle_appointment_booking_disabled(): |
| 21 | if not frappe.get_single_value("Appointment Booking Settings", "enable_scheduling"): |
| 22 | frappe.redirect_to_message( |
| 23 | _("Appointment Scheduling Disabled"), |
| 24 | _("Appointment Scheduling has been disabled for this site"), |
| 25 | http_status_code=302, |
| 26 | indicator_color="red", |
| 27 | ) |
| 28 | raise frappe.Redirect |
| 29 | |
| 30 | |
| 31 | @frappe.whitelist(allow_guest=True) |
no test coverage detected