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

base_group_service.rb « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c95b6f5af60208d48813778cf804cd3ea5465e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

# Base class, scoped by group
class BaseGroupService < ::BaseContainerService # rubocop:disable Gitlab/NamespacedClass
  attr_accessor :group

  def initialize(group:, current_user: nil, params: {})
    super(container: group, current_user: current_user, params: params)

    @group = group
  end
end