gitlab-org--gitlab-foss/app/models/group.rb

31 lines
719 B
Ruby
Raw Normal View History

2012-11-19 18:24:05 +00:00
# == Schema Information
#
2012-11-24 20:16:51 +00:00
# Table name: namespaces
2012-11-19 18:24:05 +00:00
#
# id :integer not null, primary key
# name :string(255) not null
2012-11-24 20:16:51 +00:00
# path :string(255) not null
2012-11-19 18:24:05 +00:00
# owner_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
2012-11-24 20:16:51 +00:00
# type :string(255)
2012-11-19 18:24:05 +00:00
#
class Group < Namespace
def add_users_to_project_teams(user_ids, project_access)
projects.each do |project|
project.add_users_ids_to_team(user_ids, project_access)
end
end
2012-10-03 11:26:37 +00:00
def users
users = User.joins(:users_projects).where(users_projects: {project_id: project_ids})
users = users << owner
users.uniq
2012-10-03 11:26:37 +00:00
end
def human_name
name
end
2012-10-02 15:17:12 +00:00
end