realestately/app/controllers/application_controller.rb
2017-10-13 10:17:32 +11:00

5 lines
134 B
Ruby

class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
before_action :authenticate_user!
end