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

update_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: 61589a07250b031b25cd680e6ecaae7f03e7c00a (plain)
1
2
3
4
5
6
7
module ApplicationSettings
  class UpdateService < ApplicationSettings::BaseService
    def execute
      @application_setting.update(@params)
    end
  end
end