You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All of the above fields should be sufficient for a virtual hearing day. All fields except room should be relevant to track for a virtual hearing day since virtual hearings won't have room associated with them.
Currently, the HearingDayAddModal has a checkbox to indicate whether not to assign rooms for hearings (which is checked by default)
HearingDayController uses the param assign_room to determine whether to assign rooms. We can ignore room assignment completely and bypass it here. The room field can stay nil for virtual hearing days.
Acceptance criteria
ensure existing tests pass and existing functionality remains unbroken
write unit tests for HearingDayController and HearingDay model
All of our request types are stored as single character here and V is taken by video, we may need to break convention and store virtual as VIRTUAL
There's some calculation for generating hearing day schedule where room is taken into account. We might need to look deeper and see if virtual hearing days will be compatible for this.
The text was updated successfully, but these errors were encountered:
Description
The current
HearingDay
model looks as follows:All of the above fields should be sufficient for a virtual hearing day. All fields except
room
should be relevant to track for a virtual hearing day since virtual hearings won't have room associated with them.Currently, the
HearingDayAddModal
has a checkbox to indicate whether not to assign rooms for hearings (which is checked by default)HearingDayController
uses the paramassign_room
to determine whether to assign rooms. We can ignore room assignment completely and bypass it here. Theroom
field can staynil
for virtual hearing days.Acceptance criteria
HearingDayController
andHearingDay
modelBackground/context/resources
Technical notes
V
is taken by video, we may need to break convention and store virtual asVIRTUAL
room
is taken into account. We might need to look deeper and see if virtual hearing days will be compatible for this.The text was updated successfully, but these errors were encountered: