diff --git a/VRE/apps/study/urls.py b/VRE/apps/study/urls.py index e92bdeb..cc1ab59 100644 --- a/VRE/apps/study/urls.py +++ b/VRE/apps/study/urls.py @@ -4,7 +4,7 @@ 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('/contributors//', Contributors.as_view({'get': 'get', 'put': 'update', 'delete': 'delete'}), name='study-contributors'), path('/contributors/invite/', process_study_invite, name='study-invite'), path('/contributors/join/', validate_study_invite, name='study-invite-join'),