diff --git a/app/controllers/management/dashboard_controller.rb b/app/controllers/management/dashboard_controller.rb new file mode 100644 index 000000000..abb605341 --- /dev/null +++ b/app/controllers/management/dashboard_controller.rb @@ -0,0 +1,6 @@ +class Management::DashboardController < Management::BaseController + + def index + end + +end diff --git a/app/views/management/app/views/management/dashboard/index.html.erb b/app/views/management/app/views/management/dashboard/index.html.erb new file mode 100644 index 000000000..8fc1b6100 --- /dev/null +++ b/app/views/management/app/views/management/dashboard/index.html.erb @@ -0,0 +1,3 @@ +
+

<%= t("management.dashboard.index.title") %>

+
diff --git a/config/routes.rb b/config/routes.rb index 2103c0fce..11b69dc4b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -164,6 +164,7 @@ Rails.application.routes.draw do end namespace :management do + root to: "dashboard#index" end