* fix: fixed django40 warnings * fix: fix quality failures Co-authored-by: UsamaSadiq <usama.sadiq@arbisoft.com>
15 lines
336 B
Python
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'),
|
|
]
|