Created
December 22, 2016 22:03
-
-
Save luckyruby/5f1c7c975ef19211a31ed86e42598d81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Course < ActiveRecord::Base | |
has_many :registrations, class_name: "CourseRegistration" | |
def seats_available | |
class_size - registrations.length | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment