diff --git a/app/controllers/checks_controller.rb b/app/controllers/checks_controller.rb new file mode 100644 index 0000000..8b33984 --- /dev/null +++ b/app/controllers/checks_controller.rb @@ -0,0 +1,13 @@ +class ChecksController < ApplicationController + before_action :check_beta_cookie, only: :index + + def index + @say = self.class.name + end + + def bounce + @foo = "bar" + @foo = "baz" + @foo = "bob" + end +end