Skip to content
Snippets Groups Projects
Commit ebdf99c0 authored by HeJ's avatar HeJ
Browse files

c3nav export: include room's slug, too

parent e19fa77a
No related branches found
No related tags found
No related merge requests found
...@@ -197,6 +197,7 @@ class C3NavExportView(ConferenceSlugMixin, APIView): ...@@ -197,6 +197,7 @@ class C3NavExportView(ConferenceSlugMixin, APIView):
'type': 'room', 'type': 'room',
'id': str(room.pk), 'id': str(room.pk),
'name': room.name, 'name': room.name,
'slug': room.slug,
'is_official': room.is_official, 'is_official': room.is_official,
'in_public_fahrplan': room.is_public_fahrplan, 'in_public_fahrplan': room.is_public_fahrplan,
'description': {'de': room.description_de, 'en': room.description_en}, 'description': {'de': room.description_de, 'en': room.description_en},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment