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: ebe067536ca12dabefdc381301703954dbd22d08 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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