instance method
not_modified?
Ruby on Rails 3.0.20
Since v3.0.20Signature
not_modified?(modified_at)
No documentation comment.
Parameters
-
modified_atreq
Source
# File actionpack/lib/action_dispatch/http/cache.rb, line 17
def not_modified?(modified_at)
if_modified_since && modified_at && if_modified_since >= modified_at
end
Defined in actionpack/lib/action_dispatch/http/cache.rb line 17
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Http::Cache::Request