Skip to content

Commit

Permalink
Update rooms for auto approval
Browse files Browse the repository at this point in the history
  • Loading branch information
rlho committed Mar 28, 2024
1 parent caeefab commit 0cf7110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ export default function useSubmitBooking(): [(any) => Promise<void>, boolean] {
selectedRoomIds.every((r) => INSTANT_APPROVAL_ROOMS.includes(r)) &&
data['catering'] === 'no' &&
data['hireSecurity'] === 'no' &&
data['mediaServices'] === '' &&
data['roomSetup'] === 'no'
);
};
Expand Down
2 changes: 1 addition & 1 deletion media_commons_booking_app/src/policy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ export const SAFETY_TRAINING_REQUIRED_ROOM = [
'230',
];

export const INSTANT_APPROVAL_ROOMS = ['221', '222', '223', '224'];
export const INSTANT_APPROVAL_ROOMS = ['221', '222', '223', '224', '233'];

0 comments on commit 0cf7110

Please sign in to comment.