diff --git a/smoothschedule/platform_admin/views.py b/smoothschedule/platform_admin/views.py index 039e80e..18868c2 100644 --- a/smoothschedule/platform_admin/views.py +++ b/smoothschedule/platform_admin/views.py @@ -820,7 +820,7 @@ class PlatformUserViewSet(viewsets.ModelViewSet): queryset = User.objects.all().order_by('-date_joined') serializer_class = PlatformUserSerializer permission_classes = [IsAuthenticated, IsPlatformAdmin] - http_method_names = ['get', 'patch', 'head', 'options'] # Allow GET and PATCH + http_method_names = ['get', 'post', 'patch', 'head', 'options'] # Allow GET, POST, and PATCH def get_queryset(self): """Optionally filter by business or role"""