forked from e621ng/e621ng
12 lines
197 B
Ruby
12 lines
197 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class DashboardsController < ApplicationController
|
|
before_action :admin_only
|
|
|
|
def show
|
|
@dashboard = AdminDashboard.new
|
|
end
|
|
end
|
|
end
|