We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3da370c commit bacd16bCopy full SHA for bacd16b
app/controllers/application_controller.rb
@@ -2,8 +2,6 @@ class ApplicationController < ActionController::Base
2
include SecurityHandling
3
include ErrorHandling
4
5
- before_action :maintenance_mode
6
-
7
# This is required to get request attributes in to the production logs.
8
# See the various lograge configurations in `production.rb`.
9
def append_info_to_payload(payload)
@@ -51,8 +49,4 @@ def initialize_disclosure_check(attributes = {})
51
49
session[:disclosure_check_id] = disclosure_check.id
52
50
end
53
54
55
- def maintenance_mode
56
- render "errors/maintenance" if Rails.env.production?
57
- end
58
0 commit comments