1bd80e1afe
Allows creating ads within Discourse admin at Plugins > House Ads. Write the ads in html and style them with CSS in themes.
11 lines
242 B
Ruby
11 lines
242 B
Ruby
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
|