Files
edx-platform/openedx/features/journals/urls.py
Bill Filler c746a4e630 Add Journals support
Enable the journal app in LMS. Add support to display Journals on index
and courseware pages and dashboard.
2018-07-23 13:11:26 -04:00

20 lines
485 B
Python

"""
Defines URLs for course bookmarks.
"""
from django.conf.urls import url
from openedx.features.journals.views.marketing import bundle_about
from openedx.features.journals.views import learner_dashboard
urlpatterns = [
url(r'^bundles/{}/about'.format(r'(?P<bundle_uuid>[0-9a-f-]+)',),
bundle_about,
name='openedx.journals.bundle_about'
),
url(r'^$',
learner_dashboard.journal_listing,
name='openedx.journals.dashboard'
),
]