Sha256: a66032f8bff28a9540f657514879aa427b48e7f56180119bfdfe181fd7d82f7f
Contents?: true
Size: 373 Bytes
Versions: 24
Compression:
Stored size: 373 Bytes
Contents
module PandaCms class Admin::FilesController < ApplicationController before_action :set_initial_breadcrumb, only: %i[index show] before_action :authenticate_admin_user! def index redirect_to admin_dashboard_path end def show end private def set_initial_breadcrumb add_breadcrumb "Media", admin_files_path end end end
Version data entries
24 entries across 24 versions & 1 rubygems