module Student

Constants

UNDERGRAD_STUDENT_LEVELS

Public Instance Methods

major() click to toggle source
# File lib/buweb/concerns/student.rb, line 22
def major
  majors.first unless majors.nil?
end
minor() click to toggle source
# File lib/buweb/concerns/student.rb, line 26
def minor
  minors.first unless minors.nil?
end