#132 | #121: backoffice / dev-1.0-121 #131

Merged
thomas merged 151 commits from dev-1.0-121 into develop-1.0 2024-04-28 20:02:14 +00:00
Showing only changes of commit 10dfe3811b - Show all commits

View File

@ -1,3 +1,4 @@
def station(request): def station(request):
station = request.station station = request.station
return {"station": station, "audio_streams": station.streams} audio_streams = station.streams if station else None
return {"station": station, "audio_streams": audio_streams}