Sha256: 4168d04bb38c892c1a85bc3022f60c7d30d9ea08cb5ff1699fb200b90c18f39b

Contents?: true

Size: 338 Bytes

Versions: 1

Compression:

Stored size: 338 Bytes

Contents

require_dependency 'underworld/dashboard/application_controller'


module Underworld
  class DashboardController < ::Dashboard::ApplicationController

    before_action :authenticate_user!, :only => [:modules, :index]

    def index
      redirect_to dashboard_path if params.include? :signin
    end

    def not_found
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
underworld-1.0.0 app/controllers/underworld/dashboard_controller.rb