1
0
mirror of synced 2026-08-03 17:06:58 +00:00
Files

13 lines
273 B
Ruby
Raw Permalink Normal View History

2019-05-13 10:16:50 +08:00
# frozen_string_literal: true
2019-04-18 17:52:59 -04:00
module ::AdPlugin
class HouseAdSettingsController < ::ApplicationController
requires_plugin AdPlugin.plugin_name
def update
HouseAdSetting.update(params[:id], params[:value])
render json: success_json
end
end
end