Skip to content
Snippets Groups Projects
Commit dd0afded authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Remove automation_id from json_day_schedule and json_playout views and APIScheduleViewSet

parent 847eac51
No related branches found
No related tags found
No related merge requests found
...@@ -54,12 +54,8 @@ def json_day_schedule(request, year=None, month=None, day=None): ...@@ -54,12 +54,8 @@ def json_day_schedule(request, year=None, month=None, day=None):
'end': ts.end.strftime('%Y-%m-%d_%H:%M:%S'), 'end': ts.end.strftime('%Y-%m-%d_%H:%M:%S'),
'title': ts.show.name, 'title': ts.show.name,
'id': ts.show.id, 'id': ts.show.id,
'automation-id': -1
} }
if ts.schedule.automation_id:
entry['automation-id'] = ts.schedule.automation_id
schedule.append(entry) schedule.append(entry)
return HttpResponse(json.dumps(schedule, ensure_ascii=False).encode('utf8'), return HttpResponse(json.dumps(schedule, ensure_ascii=False).encode('utf8'),
...@@ -118,7 +114,6 @@ def json_playout(request): ...@@ -118,7 +114,6 @@ def json_playout(request):
'start': ts.start.strftime('%Y-%m-%dT%H:%M:%S'), 'start': ts.start.strftime('%Y-%m-%dT%H:%M:%S'),
'end': ts.end.strftime('%Y-%m-%dT%H:%M:%S'), 'end': ts.end.strftime('%Y-%m-%dT%H:%M:%S'),
'title': ts.show.name + is_repetition, # For JS Calendar 'title': ts.show.name + is_repetition, # For JS Calendar
'automation-id': -1,
'schedule_id': ts.schedule.id, 'schedule_id': ts.schedule.id,
'is_repetition': ts.is_repetition, 'is_repetition': ts.is_repetition,
'playlist_id': ts.playlist_id, 'playlist_id': ts.playlist_id,
...@@ -137,9 +132,6 @@ def json_playout(request): ...@@ -137,9 +132,6 @@ def json_playout(request):
'className': classname, 'className': classname,
} }
if ts.schedule.automation_id:
entry['automation-id'] = ts.schedule.automation_id
schedule.append(entry) schedule.append(entry)
return HttpResponse(json.dumps(schedule, ensure_ascii=False).encode('utf8'), return HttpResponse(json.dumps(schedule, ensure_ascii=False).encode('utf8'),
...@@ -468,7 +460,7 @@ class APIScheduleViewSet(viewsets.ModelViewSet): ...@@ -468,7 +460,7 @@ class APIScheduleViewSet(viewsets.ModelViewSet):
return Response(status=status.HTTP_400_BAD_REQUEST) return Response(status=status.HTTP_400_BAD_REQUEST)
# If we're updating the default playlist id # If we're updating the default playlist id
# TODO: If nothing else than default_playlist_id, automation_id or is_repetition changed -> just save and don't do anything # TODO: If nothing else than default_playlist_id, or is_repetition changed -> just save and don't do anything
new_schedule = request.data.get('schedule') new_schedule = request.data.get('schedule')
if 'default_playlist_id' in new_schedule: if 'default_playlist_id' in new_schedule:
schedule = get_object_or_404(Schedule, pk=pk, show=show_pk) schedule = get_object_or_404(Schedule, pk=pk, show=show_pk)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment