Files
edx-platform/common/djangoapps/embargo/urls.py

16 lines
373 B
Python

"""URLs served by the embargo app. """
from django.conf.urls import patterns, url
from embargo.views import CourseAccessMessageView
urlpatterns = patterns(
'embargo.views',
url(
r'^blocked-message/(?P<access_point>enrollment|courseware)/(?P<message_key>.+)/$',
CourseAccessMessageView.as_view(),
name='embargo_blocked_message',
),
)