Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed url to cms #105

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cms/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from openedx.core.djangoapps.password_policy.forms import PasswordPolicyAwareAdminAuthForm
from openedx.core import toggles as core_toggles

from common.djangoapps.student.views.management import extras_course_enroll_user, extras_update_user_details
from common.djangoapps.student.views.management import extras_course_enroll_user, extras_update_user_details, extras_sync_moodle_attendance
from cms.djangoapps.contentstore.views.course import extras_create_course
from cms.djangoapps.contentstore.views.course import extras_get_moodle_login_url

Expand Down Expand Up @@ -111,6 +111,7 @@
name='course_search_index_handler'
),
re_path(fr'^course/{settings.COURSE_KEY_PATTERN}?$', contentstore_views.course_handler, name='course_handler'),
re_path(r'^extras/sync_moodle_attendance$', views.extras_sync_moodle_attendance, name='extras_sync_moodle_attendance'),

re_path(fr'^checklists/{settings.COURSE_KEY_PATTERN}?$',
contentstore_views.checklists_handler,
Expand Down
2 changes: 1 addition & 1 deletion common/djangoapps/student/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

re_path(r'^extras/certificate', views.extras_certificate, name = "extras_certificate"),
re_path(r'^extras/transcript', views.extras_transcript, name = "extras_transcript"),
re_path(r'^extras/sync_moodle_attendance$', views.extras_sync_moodle_attendance, name='extras_sync_moodle_attendance'),


re_path(r'^extras/get_user_enrolled_courses', views.extras_get_user_enrolled_courses, name = "extras_get_user_enrolled_courses"),
re_path(r'^extras/get_last_login', views.extras_get_last_login, name = "extras_get_last_login"),
Expand Down
Loading