from django.urls import path from .views import Contributors, process_study_invite, validate_study_invite urlpatterns = [ path('/contributors/', Contributors.as_view({'get': 'list'}), name='study-contributors'), path('/contributors//', Contributors.as_view({'get': 'get', 'put': 'update', 'post': 'update', 'delete': 'delete'}), name='study-contributors'), path('/contributor/invite/', process_study_invite, name='study-invite'), path('/join/', validate_study_invite, name='study-invite-join'), ]