Skip to content

Instantly share code, notes, and snippets.

@luckyruby
Created December 22, 2016 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckyruby/5f1c7c975ef19211a31ed86e42598d81 to your computer and use it in GitHub Desktop.
Save luckyruby/5f1c7c975ef19211a31ed86e42598d81 to your computer and use it in GitHub Desktop.
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