Sha256: 69cf5b2ef0b355776790cd8e281c3abc9fc484305f1e671be821c29a1cd269d6

Contents?: true

Size: 476 Bytes

Versions: 1

Compression:

Stored size: 476 Bytes

Contents

# frozen_string_literal: true

module Archangel
  ##
  # @see Archangel::BackendController
  #
  module Backend
    ##
    # Backend dashboards controller
    #
    class DashboardsController < BackendController
      include Archangel::Controllers::SkipAuthorizableConcern

      ##
      # Backend dashboard
      #
      # Formats
      #   HTML, JSON
      #
      # Request
      #   GET /backend
      #   GET /backend.json
      #
      def show; end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
archangel-0.4.0 app/controllers/archangel/backend/dashboards_controller.rb