From d25c9567cf358fda0ce3fee2faa36bc603c4c458 Mon Sep 17 00:00:00 2001 From: Alex Basson Date: Fri, 10 Sep 2021 11:55:29 -0400 Subject: [PATCH] Remove vestigial experiments endpoint --- app/controllers/experiments_controller.rb | 5 ----- app/views/experiments/index.html.haml | 1 - config/routes.rb | 1 - 3 files changed, 7 deletions(-) delete mode 100644 app/controllers/experiments_controller.rb delete mode 100644 app/views/experiments/index.html.haml diff --git a/app/controllers/experiments_controller.rb b/app/controllers/experiments_controller.rb deleted file mode 100644 index df67ef9e..00000000 --- a/app/controllers/experiments_controller.rb +++ /dev/null @@ -1,5 +0,0 @@ -class ExperimentsController < ApplicationController - def index - - end -end \ No newline at end of file diff --git a/app/views/experiments/index.html.haml b/app/views/experiments/index.html.haml deleted file mode 100644 index 73ae894e..00000000 --- a/app/views/experiments/index.html.haml +++ /dev/null @@ -1 +0,0 @@ -%h1 Alex was here diff --git a/config/routes.rb b/config/routes.rb index f7c93313..6f875801 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -7,7 +7,6 @@ Rails.application.routes.draw do resources :dashboard, only: [:index] end end - resources :experiments resources :schools do resources :recipient_lists