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

18 lines
443 B
Ruby
Raw Normal View History

2012-11-19 18:24:05 +00:00
# == Schema Information
#
# Table name: groups
#
# id :integer not null, primary key
# name :string(255) not null
# code :string(255) not null
# owner_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
#
class Group < Namespace
2012-10-03 11:26:37 +00:00
def users
2012-10-09 00:10:04 +00:00
User.joins(:users_projects).where(users_projects: {project_id: project_ids}).uniq
2012-10-03 11:26:37 +00:00
end
2012-10-02 15:17:12 +00:00
end