]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/api/relations_controller.rb
Prefer keyword arguments when method has optional boolean arguments
[rails.git] / app / controllers / api / relations_controller.rb
index 28e4a026bc47a820a5eb40faa7aa1c221e6364f6..9bb3eb87c4ebf4e2f2c4404a30981957b859a70d 100644 (file)
@@ -16,7 +16,7 @@ module Api
     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