Skip to content

Commit

Permalink
Merge pull request #104 from RedTurtle/change_max_default
Browse files Browse the repository at this point in the history
Change max bookings limit to 0(infinity)
  • Loading branch information
cekk authored Oct 18, 2023
2 parents b70fe02 + db59ae7 commit 5e86978
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ Changelog
2.1.4 (unreleased)
------------------

- Change bookings default limit to 0.
[folix-01]

- Add booking_refuse_message to Prenotazione stringinterp variables.
[folix-01]


2.1.3 (2023-10-13)
------------------

- Resect hiddent booking types from @booking-schema.
- Resect hidden booking types from @booking-schema.
[folix-01]


Expand Down
2 changes: 1 addition & 1 deletion src/redturtle/prenotazioni/content/prenotazioni_folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ def data_validation(data):
default="The number of simultaneous bookings allowed for the same user.",
),
required=False,
default=2,
default=0,
)

model.fieldset(
Expand Down

0 comments on commit 5e86978

Please sign in to comment.