prevent POST on /api/v2/system_jobs/

SystemJobs should only be created by launching a SystemJobTemplate
This commit is contained in:
Ryan Petrello 2019-08-23 15:10:14 -04:00
parent 6e6676adb3
commit a949cc33f1
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777

View File

@ -3975,7 +3975,7 @@ class AdHocCommandNotificationsList(SubListAPIView):
search_fields = ('subject', 'notification_type', 'body',)
class SystemJobList(ListCreateAPIView):
class SystemJobList(ListAPIView):
model = models.SystemJob
serializer_class = serializers.SystemJobListSerializer