7 lines
173 B
Python
7 lines
173 B
Python
from django.urls import path
|
|
|
|
app_name = 'api'
|
|
|
|
urlpatterns = [
|
|
path('profile/seen_posts/<str:submission_hash>', UserProfileAPIView.seen_post, name='user_seen_post'),
|
|
]
|