]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/notes/_note.json.jsonify
Move the notes api methods into a controller in the api namespace
[rails.git] / app / views / notes / _note.json.jsonify
diff --git a/app/views/notes/_note.json.jsonify b/app/views/notes/_note.json.jsonify
deleted file mode 100644 (file)
index 6afb4a5..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-json.type "Feature"
-
-json.geometry do
-  json.type "Point"
-  json.coordinates [ note.lon, note.lat ]              
-end
-
-json.properties do
-  json.id note.id
-  json.url note_url(note, :format => params[:format])
-  json.comment_url comment_note_url(note, :format => params[:format])
-  json.close_url close_note_url(note, :format => params[:format])
-  json.date_created note.created_at
-  json.nearby  note.nearby_place
-  json.status note.status
-  json.closed_at note.closed_at if note.status == "closed"
-
-  json.comments(note.comments) do |comment|
-    json.date comment.created_at
-    json.uid comment.author_id unless comment.author_id.nil?
-    json.user comment.author_name
-    json.action comment.event
-    json.text comment.body unless comment.body.nil?
-  end
-end