Files
edx-platform/lms/djangoapps/badges/api/urls.py
adeelehsan b65601e023 Executed python-modernize and isort
on mentioned files in INCR-451
 Please enter the commit message for your changes. Lines starting
2019-07-12 16:15:19 +05:00

14 lines
313 B
Python

"""
URLs for badges API
"""
from __future__ import absolute_import
from django.conf import settings
from django.conf.urls import url
from .views import UserBadgeAssertions
urlpatterns = [
url('^assertions/user/' + settings.USERNAME_PATTERN + '/$', UserBadgeAssertions.as_view(), name='user_assertions'),
]