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
{{ message }}
This repository has been archived by the owner on Oct 27, 2018. It is now read-only.
As per YACS-RCOS/university#8, we want to add a status field to sections at RPI in order to be consistent with NYU. In the case of RPI, we track the fields seats and seats_taken, where seats is the total number of seats in a section, and seats_taken is the number of students that are currently registered for the section.
The status field for each section should be set based on the following conditional:
if seats_taken >= seats
status = 'closed'
else
status = 'open'
end
The text was updated successfully, but these errors were encountered:
As per YACS-RCOS/university#8, we want to add a
status
field tosections
at RPI in order to be consistent with NYU. In the case of RPI, we track the fieldsseats
andseats_taken
, whereseats
is the total number of seats in a section, andseats_taken
is the number of students that are currently registered for the section.The
status
field for each section should be set based on the following conditional:The text was updated successfully, but these errors were encountered: