discourse-adplugin/app/controllers/house_ad_settings_controlle...

13 lines
273 B
Ruby
Raw Permalink Normal View History

2019-05-12 22:16:50 -04:00
# frozen_string_literal: true
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