From d760cec5f609da1574ad7e0ffdedf59067db85f1 Mon Sep 17 00:00:00 2001 From: Rasmus Kjellberg <2277443+kjellberg@users.noreply.github.com> Date: Fri, 7 Jun 2024 12:07:01 +0200 Subject: [PATCH] chore: remove dashboard from starter kit --- app/controllers/dashboard_controller.rb | 4 ---- config/routes.rb | 1 - 2 files changed, 5 deletions(-) delete mode 100644 app/controllers/dashboard_controller.rb diff --git a/app/controllers/dashboard_controller.rb b/app/controllers/dashboard_controller.rb deleted file mode 100644 index b5083b3..0000000 --- a/app/controllers/dashboard_controller.rb +++ /dev/null @@ -1,4 +0,0 @@ -class DashboardController < ApplicationController - def show - end -end diff --git a/config/routes.rb b/config/routes.rb index 30542da..ccda8d8 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -17,7 +17,6 @@ # Routes inside this block will be prefixed with /team/ if # the user is signed in to a team account. Otherwise, they won't be prefixed at all. teamable_scope do - get "dashboard" => "dashboard#show" end # Defines the root path route ("/")