diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 4780a7a2a9a1ec101742e532673740b2faa770d8..6da4f91c3f44a1e053b9882aae7d7650f5b4bb8b 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -48,7 +48,7 @@ class ApplicationController < ActionController::Base
     end
   end
 
-  def authenticate_user!
+  def authenticate_user!(*args)
     # If user is not signe-in and tries to access root_path - redirect him to landing page
     if current_application_settings.home_page_url.present?
       if current_user.nil? && controller_name == 'dashboard' && action_name == 'show'
@@ -56,7 +56,7 @@ class ApplicationController < ActionController::Base
       end
     end
 
-    super
+    super(*args)
   end
 
   def log_exception(exception)