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: 2bcc7d7c08b5ea994daaf366f30eeb4ef79ccfba (plain)
1
2
3
4
5
6
7
module ApplicationSettings
  class BaseService < ::BaseService
    def initialize(application_setting, user, params = {})
      @application_setting, @current_user, @params = application_setting, user, params.dup
    end
  end
end