diff --git a/fet2020/posts/serializers.py b/fet2020/posts/serializers.py index c28d0d4d..4c09e4b7 100644 --- a/fet2020/posts/serializers.py +++ b/fet2020/posts/serializers.py @@ -23,12 +23,15 @@ class PostSerializer(serializers.HyperlinkedModelSerializer): 'event_end', 'is_hidden', 'agenda_html', + 'protocol_html', 'has_agenda', + 'has_protocol', 'tag_string', 'imageurl' # 'author', ] extra_kwargs={ - 'agenda_html': {"required": False} + 'agenda_html': {"required": False}, + 'protocol_html': {"required": False} }