diff --git a/app/controllers/experiments_controller.rb b/app/controllers/experiments_controller.rb new file mode 100644 index 00000000..df67ef9e --- /dev/null +++ b/app/controllers/experiments_controller.rb @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000..73ae894e --- /dev/null +++ b/app/views/experiments/index.html.haml @@ -0,0 +1 @@ +%h1 Alex was here diff --git a/config/routes.rb b/config/routes.rb index 451e5d80..1f1a403b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -3,6 +3,7 @@ Rails.application.routes.draw do resources :questions resources :categories resources :districts + resources :experiments resources :schools do resources :recipient_lists