From: Steve Coast Date: Mon, 21 Jan 2008 17:42:57 +0000 (+0000) Subject: add last-modified header to relation read X-Git-Tag: live~7980 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/dbf4e326715e64cf7dd1d554a5a2833b6ac0b563 add last-modified header to relation read --- diff --git a/app/controllers/relation_controller.rb b/app/controllers/relation_controller.rb index 3f185254b..2b1ba6c75 100644 --- a/app/controllers/relation_controller.rb +++ b/app/controllers/relation_controller.rb @@ -31,7 +31,7 @@ class RelationController < ApplicationController def read begin relation = Relation.find(params[:id]) - + response.headers['Last-Modified'] = relation.timestamp.rfc822 if relation.visible render :text => relation.to_xml.to_s, :content_type => "text/xml" else