Skip to content

Commit b049748

Browse files
committed
require_scheduler_inheritationが最初に実行されるようにする
1 parent 782f084 commit b049748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/application_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ class ApplicationController < ActionController::Base
66
include PolicyHelper
77
helper_method :staging?
88
protect_from_forgery with: :exception
9+
before_action :require_scheduler_inheritation
910
before_action :basic_auth, if: :staging?
1011
before_action :test_login, if: :test?
1112
before_action :init_user
1213
before_action :allow_cross_domain_access
1314
before_action :set_host_for_disk_storage
1415
before_action :require_active_user_login
15-
before_action :require_scheduler_inheritation
1616

1717
protected
1818

0 commit comments

Comments
 (0)