diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/home_controller.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb new file mode 100644 index 0000000..13e5d35 --- /dev/null +++ b/app/controllers/home_controller.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +class HomeController < ApplicationController + #skip_before_action :authenticate_user! + + def index + end +end |