Files
codeocean/app/controllers/admin/dashboard_controller.rb
2021-11-01 17:13:08 +01:00

20 lines
342 B
Ruby

# frozen_string_literal: true
module Admin
class DashboardController < ApplicationController
include DashboardHelper
def policy_class
DashboardPolicy
end
def show
authorize(self)
respond_to do |format|
format.html
format.json { render(json: dashboard_data) }
end
end
end
end