SmartPicasso/rest-app/smartpicasso/app/user_profile/urls.py

12 lines
208 B
Python
Raw Normal View History

"""
@author: p.dolata
"""
from django.conf.urls import url
from smartpicasso.app.user_profile.views import UserProfileView
urlpatterns = [
url(r'^profile', UserProfileView.as_view(), name='profile')
]