Sha256: 3c80b6c452bc426003cdfd72e29908a72afcc306375da6dfed43335ac55d0c39

Contents?: true

Size: 463 Bytes

Versions: 8

Compression:

Stored size: 463 Bytes

Contents

# frozen_string_literal: true

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

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
archangel-0.3.0 app/controllers/archangel/backend/dashboards_controller.rb
archangel-0.0.8 app/controllers/archangel/backend/dashboards_controller.rb
archangel-0.0.7 app/controllers/archangel/backend/dashboards_controller.rb
archangel-0.0.6 app/controllers/archangel/backend/dashboards_controller.rb
archangel-0.0.5 app/controllers/archangel/backend/dashboards_controller.rb
archangel-0.0.4 app/controllers/archangel/backend/dashboards_controller.rb
archangel-0.0.3 app/controllers/archangel/backend/dashboards_controller.rb
archangel-0.0.2 app/controllers/archangel/backend/dashboards_controller.rb