From 9abdafe1012e776f657916417ee03af38650fbd4 Mon Sep 17 00:00:00 2001 From: John Westcott IV Date: Tue, 7 Jun 2022 16:10:37 -0400 Subject: [PATCH] Removing read_only as its the default setting --- awx/api/serializers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/awx/api/serializers.py b/awx/api/serializers.py index b5085fe67b..9c36d30259 100644 --- a/awx/api/serializers.py +++ b/awx/api/serializers.py @@ -4685,11 +4685,9 @@ class ScheduleSerializer(LaunchConfigurationBaseSerializer, SchedulePreviewSeria help_text=_( 'The timezone this schedule runs in. This field is extracted from the RRULE. If the timezone in the RRULE is a link to another timezone this field will show the links name.' ), - read_only=True, ) until = serializers.SerializerMethodField( help_text=_('The date this schedule will end. This field is computed from the RRULE. If the schedule does not end an emptry string will be returned'), - read_only=True, ) class Meta: