Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 683606fa706c1b0003ba097c1ef727e5d9a105f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# == 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
  def users
    User.joins(:users_projects).where(users_projects: {project_id: project_ids}).uniq
  end
end