feat: redirect non-members visiting any batch page to the course page

This commit is contained in:
Anand Chitipothu
2021-05-24 12:57:01 +05:30
parent 69125e571f
commit df431165e8

View File

@@ -13,7 +13,7 @@ def get_common_context(context):
return
batch = course.get_batch(batch_name)
if not batch:
if not batch or not batch.is_member(frappe.session.user):
frappe.local.flags.redirect_location = "/courses/" + course_name
raise frappe.Redirect