Class: Group

Inherits:
Principal show all
Defined in:
app/models/group.rb

Overview

Redmine - project management software Copyright © 2006-2009 Jean-Philippe Lang

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Instance Method Summary collapse

Methods inherited from Principal

#<=>, #name

Instance Method Details

#to_sObject



28
29
30
# File 'app/models/group.rb', line 28

def to_s
  lastname.to_s
end

#user_added(user) ⇒ Object



32
33
34
35
36
37
38
39
40
41
# File 'app/models/group.rb', line 32

def user_added(user)
  members.each do |member|
    next if member.project.nil?
    user_member = Member.find_by_project_id_and_user_id(member.project_id, user.id) || Member.new(:project_id => member.project_id, :user_id => user.id)
    member.member_roles.each do |member_role|
      user_member.member_roles << MemberRole.new(:role => member_role.role, :inherited_from => member_role.id)
    end
    user_member.save!
  end
end

#user_removed(user) ⇒ Object



43
44
45
46
47
48
# File 'app/models/group.rb', line 43

def user_removed(user)
  members.each do |member|
    MemberRole.find(:all, :include => :member,
                          :conditions => ["#{Member.table_name}.user_id = ? AND #{MemberRole.table_name}.inherited_from IN (?)", user.id, member.member_role_ids]).each(&:destroy)
  end
end