on mentioned files in INCR-451 Please enter the commit message for your changes. Lines starting
14 lines
313 B
Python
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'),
|
|
]
|