gault-millau/apps/account/urls/common.py
2019-09-02 15:44:37 +03:00

11 lines
208 B
Python

"""Common account URLs"""
from django.urls import path
from account.views import common as views
app_name = 'account'
urlpatterns = [
path('user/', views.UserView.as_view(), name='user-get-update'),
]