authorize_resource
before_action :require_public_data, :only => [:create, :update, :delete]
- around_action :api_call_handle_error, :api_call_timeout
-
before_action :set_request_formats, :except => [:create, :update, :delete]
before_action :check_rate_limit, :only => [:create, :update, :delete]
end
def update
- logger.debug request.raw_post
-
relation = Relation.find(params[:id])
new_relation = Relation.from_xml(request.raw_post)
node_ids += way_node_ids.flatten
nodes = Node.where(:id => node_ids.uniq).includes(:node_tags)
- visible_nodes = {}
-
@nodes = []
nodes.each do |node|
next unless node.visible? # should be unnecessary if data is consistent.
@nodes << node
- visible_nodes[node.id] = node
end
@ways = []