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

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

module Organizations
  class BaseService
    include BaseServiceUtility

    attr_reader :current_user, :params

    def initialize(current_user: nil, params: {})
      @current_user = current_user
      @params = params.dup
    end
  end
end