Show More
Commit Description:
merge
Commit Description:
merge
References:
File last commit:
Show/Diff file:
Action:
app/models/group.rb
| 13 lines
| 315 B
| text/x-ruby
| RubyLexer
|
r672 | class Group < ActiveRecord::Base | |||
r751 | has_many :groups_problems, class_name: 'GroupProblem' | |||
r678 | has_many :problems, :through => :groups_problems | |||
r751 | has_many :groups_users, class_name: 'GroupUser' | |||
r678 | has_many :users, :through => :groups_users | |||
#has_and_belongs_to_many :problems | ||||
#has_and_belongs_to_many :users | ||||
r672 | end | |||