Projet

Général

Profil

0001-misc-remove-comments-with-old-attribute-value-31421.patch

Frédéric Péters, 14 mars 2019 15:25

Télécharger (1,25 ko)

Voir les différences:

Subject: [PATCH] misc: remove comments with old attribute value (#31421)

 chrono/api/views.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
chrono/api/views.py
306 306
    '''
307 307
    payload to fill one slot. The slot (event id) is in the URL.
308 308
    '''
309
    label = serializers.CharField(max_length=250, allow_blank=True) #, required=False)
310
    user_name = serializers.CharField(max_length=250, allow_blank=True) #, required=False)
311
    backoffice_url = serializers.URLField(allow_blank=True) # , required=False)
312
    count = serializers.IntegerField(min_value=1) # , required=False)
309
    label = serializers.CharField(max_length=250, allow_blank=True)
310
    user_name = serializers.CharField(max_length=250, allow_blank=True)
311
    backoffice_url = serializers.URLField(allow_blank=True)
312
    count = serializers.IntegerField(min_value=1)
313 313

  
314 314

  
315 315
class SlotsSerializer(SlotSerializer):
316
-