Require logged in status

This commit is contained in:
Tobias Eidelpes 2020-04-14 14:11:01 +02:00
parent 9050ddc69d
commit af1eff30b7

View File

@ -1,2 +1,7 @@
class ApplicationController < ActionController::Base class ApplicationController < ActionController::Base
include Devise::Controllers::Helpers
protect_from_forgery with: :exception
before_action :authenticate_user!
end end