api: fix max size of booking label (#29402)

This commit is contained in:
Frédéric Péters 2019-01-02 14:30:36 +01:00
parent 09bcec9cc6
commit ac9705a167
1 changed files with 1 additions and 1 deletions

View File

@ -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)