* Make org proof a required field * Fix color picker and other minor org adjustments * Add MVP of org add'l sidebar * Add proof to org factory * Fix org create action and fix tests * Add new org fields to admin panel & lint * Add proof to org edit for backward compatibility * Add org info to edit preview * Move preview edit notice to inside article div * MVP of badge "final" steps * Add info to user sidebar and clean up badge commit * Modify sidebar for data * Add organization decorator * Add conditional so only users have new swipe nav, not orgs * Add cloudinary prefix to badges * Disallow duplicate badges
21 lines
582 B
Ruby
21 lines
582 B
Ruby
module Admin
|
|
class BadgesController < Admin::ApplicationController
|
|
# To customize the behavior of this controller,
|
|
# you can overwrite any of the RESTful actions. For example:
|
|
#
|
|
# def index
|
|
# super
|
|
# @resources = Badge.
|
|
# page(params[:page]).
|
|
# per(10)
|
|
# end
|
|
|
|
# Define a custom finder by overriding the `find_resource` method:
|
|
# def find_resource(param)
|
|
# Badge.find_by!(slug: param)
|
|
# end
|
|
|
|
# See https://administrate-prototype.herokuapp.com/customizing_controller_actions
|
|
# for more information
|
|
end
|
|
end
|