summaryrefslogtreecommitdiff
path: root/app/services/application_settings/update_service.rb
blob: d6d3a661daba8e68324c9d2bbf1f48d92ff81edd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module ApplicationSettings
  class UpdateService < ApplicationSettings::BaseService
    def execute
      update_terms(@params.delete(:terms))

      @application_setting.update(@params)
    end

    private

    def update_terms(terms)
      return unless terms.present?

      # Avoid creating a new terms record if the text is exactly the same.
      terms = terms.strip
      return if terms == @application_setting.terms

      ApplicationSetting::Term.create(terms: terms)
      @application_setting.reset_memoized_terms
    end
  end
end