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

8 lines
173 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'),
2024-06-25 20:19:41 +00:00
]