diff --git a/app/controllers/empty_controller.rb b/app/controllers/empty_controller.rb new file mode 100644 index 00000000..d2535600 --- /dev/null +++ b/app/controllers/empty_controller.rb @@ -0,0 +1,19 @@ +# frozen_string_literal: true + +class EmptyController < ActionController::Base + + protected + + def current_user + nil + end + + def current_account + nil + end + + def current_session + nil + end + +end