Created
April 23, 2012 14:12
-
-
Save ahmdrefat/2471135 to your computer and use it in GitHub Desktop.
course model
This file contains 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 | |
# to be able to tag courses and find them by their tags | |
include Diaspora::Taggable | |
# to be able to like courses | |
include Diaspora::Likeable | |
# to be able to add comments on courses | |
include Diaspora::Commentable | |
# asscoiation with other new modules | |
has_many :enrollments | |
has_many :people, :through => :enrollments | |
has_many :lectures | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment