9 lines
229 B
Ruby
9 lines
229 B
Ruby
class StudentGroup < ActiveRecord::Base
|
|
|
|
has_many :student_user_groups
|
|
has_many :student_users, :through => :student_user_groups
|
|
|
|
has_many :topic_student_groups
|
|
has_many :topics, :through => :topic_student_groups
|
|
end
|