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