Merge pull request #578 from AyuntamientoMadrid/management-dashboard

Dashboard for management
This commit is contained in:
Juanjo Bazán
2015-10-01 16:42:47 +02:00
3 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
class Management::DashboardController < Management::BaseController
def index
end
end

View File

@@ -0,0 +1,3 @@
<div class="dashboard">
<h2><%= t("management.dashboard.index.title") %></h2>
</div>

View File

@@ -164,6 +164,7 @@ Rails.application.routes.draw do
end
namespace :management do
root to: "dashboard#index"
end