Skip to content

Commit

Permalink
Update room reservation schedule to start semester
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan committed Aug 21, 2024
1 parent 978e310 commit b609c9f
Showing 1 changed file with 35 additions and 49 deletions.
84 changes: 35 additions & 49 deletions backend/services/coworking/policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,67 +20,53 @@

OH_HOURS = {
MONDAY : {
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [(time(hour=15), time(hour=18))], # Sridhar
"SN135": [(time(hour=8), time(hour=20))],
"SN137": [(time(hour=8), time(hour=20))],
"SN139": [(time(hour=8), time(hour=20))],
"SN141": [(time(hour=8), time(hour=20))],
"SN144": [(time(hour=8), time(hour=20))],
"SN146": [(time(hour=8), time(hour=20))],
"SN147": [(time(hour=8), time(hour=20))],
},
TUESDAY : {
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [(time(hour=15), time(hour=18))], # Sridhar
"SN135": [(time(hour=8), time(hour=20))],
"SN137": [(time(hour=8), time(hour=20))],
"SN139": [(time(hour=8), time(hour=20))],
"SN141": [(time(hour=8), time(hour=20))],
"SN144": [(time(hour=8), time(hour=20))],
"SN146": [(time(hour=8), time(hour=20))],
"SN147": [(time(hour=8), time(hour=20))],
},
WEDNESDAY : {
"SN135": [],
"SN137": [(time(hour=15), time(hour=16))], # Johnathan Leong
"SN139": [],
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [(time(hour=15), time(hour=18))], # Sridhar
"SN135": [(time(hour=8), time(hour=20))],
"SN137": [(time(hour=8), time(hour=20))],
"SN139": [(time(hour=8), time(hour=20))],
"SN141": [(time(hour=8), time(hour=20))],
"SN144": [(time(hour=8), time(hour=20))],
"SN146": [(time(hour=8), time(hour=20))],
"SN147": [(time(hour=8), time(hour=20))],
},
THURSDAY : {
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [(time(hour=16), time(hour=18))], # Sridhar
"SN135": [(time(hour=8), time(hour=20))],
"SN137": [(time(hour=8), time(hour=20))],
"SN139": [(time(hour=8), time(hour=20))],
"SN141": [(time(hour=8), time(hour=20))],
"SN144": [(time(hour=8), time(hour=20))],
"SN146": [(time(hour=8), time(hour=20))],
"SN147": [(time(hour=8), time(hour=20))],
},
FRIDAY : {
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [(time(hour=9), time(hour=16))], # Stotts 301
"SN144": [],
"SN146": [],
"SN147": [],
"SN135": [(time(hour=8), time(hour=20))],
"SN137": [(time(hour=8), time(hour=20))],
"SN139": [(time(hour=8), time(hour=20))],
"SN141": [(time(hour=8), time(hour=20))],
"SN144": [(time(hour=8), time(hour=20))],
"SN146": [(time(hour=8), time(hour=20))],
"SN147": [(time(hour=8), time(hour=20))],
},
SATURDAY : {
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [],
"SN144": [],
"SN146": [],
"SN147": [],
},
SUNDAY : {
"SN135": [],
"SN137": [],
"SN139": [],
"SN141": [],
"SN144": [],
"SN146": [],
"SN147": [],
}
}

Expand Down

0 comments on commit b609c9f

Please sign in to comment.