feat: meta for batches

This commit is contained in:
Jannat Patel
2024-03-29 14:48:46 +05:30
parent 02e8a97f85
commit bd116c3e7b
17 changed files with 129 additions and 31 deletions

View File

@@ -140,8 +140,25 @@ website_route_rules = [
website_redirects = [
{"source": "/update-profile", "target": "/edit-profile"},
{"source": "/dashboard", "target": "/courses"},
{"source": "/community", "target": "/people"},
{"source": "/courses", "target": "/lms/courses"},
{
"source": r"/courses/(.*)",
"target": "/lms/courses",
"match_with_query_string": True,
},
{"source": "/batches", "target": "/lms/batches"},
{
"source": r"/batches/(.*)",
"target": "/lms/batches",
"match_with_query_string": True,
},
{"source": "/job-openings", "target": "/lms/job-openings"},
{
"source": r"/job-openings/(.*)",
"target": "/lms/job-openings",
"match_with_query_string": True,
},
{"source": "/statistics", "target": "/lms/statistics"},
]
update_website_context = [