gitlab-org--gitlab-foss/app/finders/group_finder.rb
Stan Hu 32b96bfd81 Merge branch 'frozen-string-app-finders-graphql' into 'master'
Enable frozen string in app/graphql + app/finders

See merge request gitlab-org/gitlab-ce!21681
2018-09-13 19:44:31 +00:00

21 lines
391 B
Ruby

# 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