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

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

module ApplicationSettings
  class BaseService < ::BaseService
    def initialize(application_setting, user, params = {})
      @application_setting = application_setting
      @current_user = user
      @params = params.dup
    end
  end
end