Skip to content

Commit

Permalink
Rename param
Browse files Browse the repository at this point in the history
  • Loading branch information
amandine-sahl committed Jun 21, 2024
1 parent bd85cc1 commit 580855e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions backend/config/config.py.sample
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down
2 changes: 1 addition & 1 deletion backend/config/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion backend/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 580855e

Please sign in to comment.