mirror of
https://github.com/ansible/awx.git
synced 2026-02-16 10:40:01 -03:30
allow any authenticated user to access the schedule preview API endpoint
see: https://github.com/ansible/tower/issues/1939
This commit is contained in:
@@ -720,6 +720,7 @@ class SchedulePreview(GenericAPIView):
|
||||
model = Schedule
|
||||
view_name = _('Schedule Recurrence Rule Preview')
|
||||
serializer_class = SchedulePreviewSerializer
|
||||
permission_classes = (IsAuthenticated,)
|
||||
|
||||
def post(self, request):
|
||||
serializer = self.get_serializer(data=request.data)
|
||||
|
||||
Reference in New Issue
Block a user