instance method
not_modified?
Ruby on Rails 8.1.2
Since v3.0.20Signature
not_modified?(modified_at)
No documentation comment.
Parameters
-
modified_atreq
Source
# File actionpack/lib/action_dispatch/http/cache.rb, line 28
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 28
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Http::Cache::Request