projects
/
rails.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1ce75e
)
We no longer need to disable sessions when the database is offline
author
Tom Hughes
<tom@compton.nu>
Mon, 2 Apr 2012 17:42:14 +0000
(18:42 +0100)
committer
Tom Hughes
<tom@compton.nu>
Mon, 2 Apr 2012 17:42:14 +0000
(18:42 +0100)
app/controllers/application_controller.rb
patch
|
blob
|
history
diff --git
a/app/controllers/application_controller.rb
b/app/controllers/application_controller.rb
index 7aace73640ac076a888828cdf06788bd094399aa..7ac9e6402bc64236d80aeac26f28e1a36554060e 100644
(file)
--- a/
app/controllers/application_controller.rb
+++ b/
app/controllers/application_controller.rb
@@
-4,13
+4,6
@@
class ApplicationController < ActionController::Base
protect_from_forgery
if STATUS == :database_readonly or STATUS == :database_offline
- after_filter :clear_session
- wrap_parameters false
-
- def clear_session
- session.clear
- end
-
def self.cache_sweeper(*sweepers)
end
end