diff --git a/backend/config/config.py.sample b/backend/config/config.py.sample index 28808300..f6842c6a 100644 --- a/backend/config/config.py.sample +++ b/backend/config/config.py.sample @@ -14,8 +14,8 @@ ORGANISM_FOR_EMAIL_SUBJECT = "" LISTE_ATTENTE_CAPACITY = 10 # Le nombre maximal d'animations auxquelles une personne peut s'inscrire NB_ANIM_MAX_PER_USER = 3 -# Le nombre maximal de participants pouvant s'inscrire à une animation -NB_PARTICIPANTS_PER_ANIM = 10 +# Le nombre maximal de participants que l'on peut indiquer lors de la création d'une réservation +NB_PARTICIPANTS_MAX_PER_ANIM_PER_USER = 10 # L'adresse où écoute le frontend du portail de réservation, par exemple : 'www.png-resa.fr' ou 'localhost:5000'. PUBLIC_SERVER_NAME = diff --git a/backend/config/conftest.py b/backend/config/conftest.py index b38790e8..eed07872 100644 --- a/backend/config/conftest.py +++ b/backend/config/conftest.py @@ -16,7 +16,7 @@ # Le nombre maximal d'animations auxquelles une personne peut s'inscrire NB_ANIM_MAX_PER_USER = 3 # Le nombre maximale de participant pouvant s'inscrire à une animation -NB_PARTICIPANTS_PER_ANIM = 10 +NB_PARTICIPANTS_MAX_PER_ANIM_PER_USER = 10 # L'adresse où écoute le frontend du portail de réservation, par exemple : 'www.png-resa.fr' ou 'localhost:5000'. PUBLIC_SERVER_NAME = "http://localhost:5173" diff --git a/backend/core/models.py b/backend/core/models.py index 52e7b8d7..3c4d26e5 100644 --- a/backend/core/models.py +++ b/backend/core/models.py @@ -187,7 +187,7 @@ def is_reservation_possible_for(self, nb_people, email): if nb_reservation > current_app.config["NB_ANIM_MAX_PER_USER"] - 1: raise UserEventNbExceded - if nb_people > current_app.config["NB_PARTICIPANTS_PER_ANIM"]: + if nb_people > current_app.config["NB_PARTICIPANTS_MAX_PER_ANIM_PER_USER"]: raise ParticipantNbExceded if not self.capacity: