Files
nairobi/app/controllers/admin/widget/cards_controller.rb
Senén Rodero Rodríguez 3aaf5ce151 Add back link to cards form
As we normally do in other places.
2021-01-12 15:34:55 +01:00

12 lines
255 B
Ruby

class Admin::Widget::CardsController < Admin::BaseController
include Admin::Widget::CardsActions
load_and_authorize_resource :card, class: "Widget::Card"
helper_method :index_path
private
def index_path
admin_homepage_path
end
end