Skip to content

Commit

Permalink
require_scheduler_inheritationが最初に実行されるようにする
Browse files Browse the repository at this point in the history
  • Loading branch information
ogawa-tomo committed Oct 31, 2023
1 parent 782f084 commit b049748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ class ApplicationController < ActionController::Base
include PolicyHelper
helper_method :staging?
protect_from_forgery with: :exception
before_action :require_scheduler_inheritation
before_action :basic_auth, if: :staging?
before_action :test_login, if: :test?
before_action :init_user
before_action :allow_cross_domain_access
before_action :set_host_for_disk_storage
before_action :require_active_user_login
before_action :require_scheduler_inheritation

protected

Expand Down

0 comments on commit b049748

Please sign in to comment.