cirandas.net

ref: master

plugins/teams/models/teams_plugin/member.rb


1
2
3
4
5
6
7
8
9
class TeamsPlugin::Member < ActiveRecord::Base

  belongs_to :team, class_name: 'TeamsPlugin::Team'
  belongs_to :profile

  validates_presence_of :team, :profile
  validates_uniqueness_of :profile_id, scope: :team_id

end