7 lines
161 B
Ruby
7 lines
161 B
Ruby
module ApplicationSettings
|
|
class UpdateService < ApplicationSettings::BaseService
|
|
def execute
|
|
@application_setting.update(@params)
|
|
end
|
|
end
|
|
end
|