Gallery-Archivist/archivist/apps/api/urls.py

7 lines
172 B
Python
Raw Normal View History

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