From 5a930074f6ce4b8a6e04e761efe94703eeec6801 Mon Sep 17 00:00:00 2001 From: Trevor Vallender Date: Sun, 26 May 2024 09:36:07 +0100 Subject: [PATCH] Rename todos to tables --- app/controllers/tables_controller.rb | 4 ++++ app/controllers/todos_controller.rb | 4 ---- app/views/layouts/application.html.erb | 1 - app/views/{todos => tables}/index.html.erb | 0 config/routes.rb | 11 ++++++----- 5 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 app/controllers/tables_controller.rb delete mode 100644 app/controllers/todos_controller.rb rename app/views/{todos => tables}/index.html.erb (100%) diff --git a/app/controllers/tables_controller.rb b/app/controllers/tables_controller.rb new file mode 100644 index 0000000..0c40dfd --- /dev/null +++ b/app/controllers/tables_controller.rb @@ -0,0 +1,4 @@ +class TablesController < ApplicationController + def index + end +end diff --git a/app/controllers/todos_controller.rb b/app/controllers/todos_controller.rb deleted file mode 100644 index c0d227b..0000000 --- a/app/controllers/todos_controller.rb +++ /dev/null @@ -1,4 +0,0 @@ -class TodosController < ApplicationController - def index - end -end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index de669f1..4956375 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -18,7 +18,6 @@