add account view for preview
This commit is contained in:
10
account/urls/user.py
Normal file
10
account/urls/user.py
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from django.conf.urls import url
|
||||
|
||||
from ..views.user import UserProfileAPI
|
||||
|
||||
urlpatterns = [
|
||||
url(r"^profile$", UserProfileAPI.as_view(), name="user_profile_api"),
|
||||
]
|
||||
Reference in New Issue
Block a user