We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46c65b9 commit d3af7ccCopy full SHA for d3af7cc
1 file changed
src/backend/apps/event/serializers.py
@@ -56,6 +56,9 @@ class EventInternalSerializer(serializers.ModelSerializer):
56
schedule = ScheduleSerializer()
57
area = serializers.PrimaryKeyRelatedField(many=True, read_only=True)
58
59
+ # Explicit CharField to not be affected by SafeStringMixin's global mapping
60
+ location_description = serializers.CharField(max_length=256, allow_blank=True)
61
+
62
class Meta:
63
model = Event
64
exclude = (
0 commit comments