method
if_modified_since
v8.0.0 -
Show latest stable
- Class:
ActionDispatch::Http::Cache::Request
if_modified_since()public
No documentation available.
# File actionpack/lib/action_dispatch/http/cache.rb, line 14
def if_modified_since
if since = get_header(HTTP_IF_MODIFIED_SINCE)
Time.rfc2822(since) rescue nil
end
end