before_action :check_api_readable, :except => [:create, :update, :delete]
around_action :api_call_handle_error, :api_call_timeout
+ before_action :set_request_formats, :except => [:create, :update, :delete]
+
def create
assert_method :put
- relation = Relation.from_xml(request.raw_post, true)
+ relation = Relation.from_xml(request.raw_post, :create => true)
# Assume that Relation.from_xml has thrown an exception if there is an error parsing the xml
relation.create_with_history current_user
end
def show
- relation = Relation.find(params[:id])
- response.last_modified = relation.timestamp
- if relation.visible
- @relations = [relation]
-
+ @relation = Relation.find(params[:id])
+ response.last_modified = @relation.timestamp
+ if @relation.visible
# Render the result
respond_to do |format|
format.xml
+ format.json
end
else
head :gone
nodes = Node.where(:id => node_ids.uniq).includes(:node_tags)
visible_nodes = {}
- # changeset_cache = {}
- # user_display_name_cache = {}
@nodes = []
nodes.each do |node|
# Render the result
respond_to do |format|
format.xml
+ format.json
end
else
head :gone
# Render the result
respond_to do |format|
format.xml
+ format.json
end
end
# Render the result
respond_to do |format|
format.xml
+ format.json
end
end
end