mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-21 23:19:22 +08:00
12 lines
273 B
Ruby
Vendored
12 lines
273 B
Ruby
Vendored
# 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
|