orbit4-5/app/controllers/admin/dashboards_controller.rb

8 lines
136 B
Ruby
Raw Normal View History

class Admin::DashboardsController < ApplicationController
before_action :authenticate_user
layout "back_end"
def index
end
end