From ac9705a16707d9d2105fcd251f8c3b7baaa73e78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 2 Jan 2019 14:30:36 +0100 Subject: [PATCH] api: fix max size of booking label (#29402) --- chrono/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrono/api/views.py b/chrono/api/views.py index 03c20a89..f22caeca 100644 --- a/chrono/api/views.py +++ b/chrono/api/views.py @@ -304,7 +304,7 @@ class SlotSerializer(serializers.Serializer): ''' payload to fill one slot. The slot (event id) is in the URL. ''' - label = serializers.CharField(max_length=150, allow_blank=True) #, required=False) + label = serializers.CharField(max_length=250, allow_blank=True) #, required=False) user_name = serializers.CharField(max_length=250, allow_blank=True) #, required=False) backoffice_url = serializers.URLField(allow_blank=True) # , required=False) count = serializers.IntegerField(min_value=1) # , required=False)