summaryrefslogtreecommitdiff
path: root/app/finders/group_finder.rb
blob: d2ad8a372b1f208a26974309bfb3337a455091a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class GroupFinder
  include Gitlab::Allowable

  def initialize(current_user)
    @current_user = current_user
  end

  # rubocop: disable CodeReuse/ActiveRecord
  def execute(*params)
    group = Group.find_by(*params)

    if can?(@current_user, :read_group, group)
      group
    else
      nil
    end
  end
  # rubocop: enable CodeReuse/ActiveRecord
end