Files
edx-platform/openedx/core/djangoapps/agreements/urls.py
Mohammad Ahtasham ul Hassan 4260bd2af5 fix: fixed django40 warnings (#29655)
* fix: fixed django40 warnings
* fix: fix quality failures

Co-authored-by: UsamaSadiq <usama.sadiq@arbisoft.com>
2022-03-02 16:08:04 +05:00

15 lines
336 B
Python

"""
URLs for the Agreements API
"""
from django.conf import settings
from django.urls import re_path
from .views import IntegritySignatureView
urlpatterns = [
re_path(r'^integrity_signature/{course_id}$'.format(
course_id=settings.COURSE_ID_PATTERN
), IntegritySignatureView.as_view(), name='integrity_signature'),
]