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