Is it possible to add a limit of people for each reservation time? #19081
Replies: 1 comment 2 replies
-
Olá @mau-mendes! Eu sou Dosu, um bot aqui para ajudar a resolver bugs, responder perguntas e ajudar você a se tornar um colaborador. Estou aqui para ajudar enquanto você espera por um mantenedor humano. Yes, it is possible to limit the number of people for each reservation time slot in cal.com. This can be achieved by using the ALTER TABLE "EventType" ADD COLUMN "seatsPerTimeSlot" INTEGER; In the application logic, the Additionally, there is a user interface component that allows users to set the Validation checks are also in place to ensure that the number of reservations does not exceed the To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
-
Hi friends, I did a quick search and didn't find anything about this, so I would like to ask... is it possible to limit the number of people for each reservation time?
For example, on a given day I have these available timeslots:
08:00 ~ 10:00
10:00 ~ 12:00
12:00 ~ 14:00
14:00 ~ 16:00
16:00 ~ 18:00
I would like to limit the number of slots for each of these timeslots, for example:
08:00 ~ 10:00 (5 reservations available)
10:00 ~ 12:00 (5 reservations available)
12:00 ~ 14:00 (5 reservations available)
14:00 ~ 16:00 (3 reservations available)
16:00 ~ 18:00 (3 reservations available)
This way all slots for a given timelot must be filled before the timelot becomes unavailable for new reservations.
Is this possible? If so, how do I do it?
Thank you very much.
Beta Was this translation helpful? Give feedback.
All reactions