* Add HTML variants for cta optimization and other nav bar adjustments * Fix 1==1 non-random mistake * Spruce up org call-to-action * Change default text color * Add html variant trial and success request specs * Fix article sidebar caching issue * One line adjustment * Modify schema * Add include ActionView::Helpers::TagHelper to user_tag_spec * Modify follow_button to remove session context * Dummy commit * Change Edit Article to Edit Post * Dummy commit * Fix rubocop concerns * Fix rubocop style
21 lines
600 B
Ruby
21 lines
600 B
Ruby
module Admin
|
|
class HtmlVariantsController < Admin::ApplicationController
|
|
# To customize the behavior of this controller,
|
|
# you can overwrite any of the RESTful actions. For example:
|
|
#
|
|
# def index
|
|
# super
|
|
# @resources = HtmlVariant.
|
|
# page(params[:page]).
|
|
# per(10)
|
|
# end
|
|
|
|
# Define a custom finder by overriding the `find_resource` method:
|
|
# def find_resource(param)
|
|
# HtmlVariant.find_by!(slug: param)
|
|
# end
|
|
|
|
# See https://administrate-prototype.herokuapp.com/customizing_controller_actions
|
|
# for more information
|
|
end
|
|
end
|