gitlab-org--gitlab-foss/app/services/application_settings/base_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
274 B
Ruby
Raw Normal View History

# 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