diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb
index 85bf44ee9a578706f9f7fee4640f7888da9d06d6..486c6b2819c1e69f9856cea2e540fd8b90b1d484 100644
--- a/app/controllers/groups_controller.rb
+++ b/app/controllers/groups_controller.rb
@@ -15,7 +15,7 @@ class GroupsController < Groups::ApplicationController
   layout :determine_layout
 
   def index
-    redirect_to (current_user ? dashboard_groups_path : explore_groups_path)
+    redirect_to(current_user ? dashboard_groups_path : explore_groups_path)
   end
 
   def new
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb
index 540bfa9ac07fc2cd4f302ecebb917d45660e8167..0bbaa93b0dfdb8190bd62d389aa7566aa9f91ae3 100644
--- a/app/controllers/projects_controller.rb
+++ b/app/controllers/projects_controller.rb
@@ -11,7 +11,7 @@ class ProjectsController < ApplicationController
   layout :determine_layout
 
   def index
-    redirect_to (current_user ? root_path : explore_root_path)
+    redirect_to(current_user ? root_path : explore_root_path)
   end
 
   def new
diff --git a/app/controllers/snippets_controller.rb b/app/controllers/snippets_controller.rb
index f5938da936fb93ac4e15437ff05276bde52733c5..9f9f9a92f1150439032f213787824428e8f07121 100644
--- a/app/controllers/snippets_controller.rb
+++ b/app/controllers/snippets_controller.rb
@@ -26,7 +26,7 @@ class SnippetsController < ApplicationController
 
       render 'index'
     else
-      redirect_to (current_user ? dashboard_snippets_path : explore_snippets_path)
+      redirect_to(current_user ? dashboard_snippets_path : explore_snippets_path)
     end
   end
 
diff --git a/app/views/dashboard/_zero_authorized_projects.html.haml b/app/views/dashboard/projects/_zero_authorized_projects.html.haml
similarity index 100%
rename from app/views/dashboard/_zero_authorized_projects.html.haml
rename to app/views/dashboard/projects/_zero_authorized_projects.html.haml
diff --git a/spec/controllers/root_controller_spec.rb b/spec/controllers/root_controller_spec.rb
index abbbf6855fc731492db6c9173908d8a18bdf795d..64dfe8f34e30cadde01e53b872dde8e3406152b5 100644
--- a/spec/controllers/root_controller_spec.rb
+++ b/spec/controllers/root_controller_spec.rb
@@ -1,7 +1,7 @@
 require 'spec_helper'
 
 describe RootController do
-  describe 'GET show' do
+  describe 'GET index' do
     context 'with a user' do
       let(:user) { create(:user) }
 
@@ -16,15 +16,15 @@ describe RootController do
         end
 
         it 'redirects to their specified dashboard' do
-          get :show
+          get :index
           expect(response).to redirect_to starred_dashboard_projects_path
         end
       end
 
       context 'who uses the default dashboard setting' do
         it 'renders the default dashboard' do
-          get :show
-          expect(response).to render_template 'dashboard/show'
+          get :index
+          expect(response).to render_template 'dashboard/projects/index'
         end
       end
     end
diff --git a/spec/routing/routing_spec.rb b/spec/routing/routing_spec.rb
index dd045826692c13683087190b5f0f284ffd1e4129..dfa18f69e05449a8f175f1215fb2d7362d92eb32 100644
--- a/spec/routing/routing_spec.rb
+++ b/spec/routing/routing_spec.rb
@@ -206,7 +206,7 @@ end
 # dashboard_merge_requests GET    /dashboard/merge_requests(.:format) dashboard#merge_requests
 describe DashboardController, "routing" do
   it "to #index" do
-    expect(get("/dashboard")).to route_to('dashboard#show')
+    expect(get("/dashboard")).to route_to('dashboard/projects#index')
   end
 
   it "to #issues" do
@@ -220,8 +220,8 @@ end
 
 #                     root        /                                   root#show
 describe RootController, 'routing' do
-  it 'to #show' do
-    expect(get('/')).to route_to('root#show')
+  it 'to #index' do
+    expect(get('/')).to route_to('root#index')
   end
 end