Commit 2a98a060 authored by Nihad Abbasov's avatar Nihad Abbasov

API: don't expose 'updated_at' for notes

parent 24047e1e
...@@ -20,8 +20,7 @@ GET /projects/:id/notes ...@@ -20,8 +20,7 @@ GET /projects/:id/notes
"blocked": false, "blocked": false,
"created_at": "2012-05-23T08:00:58Z" "created_at": "2012-05-23T08:00:58Z"
}, },
"updated_at":"2012-11-27T19:16:44Z", "created_at": "2012-11-27T19:16:44Z"
"created_at":"2012-11-27T19:16:44Z"
} }
] ]
``` ```
......
...@@ -73,7 +73,7 @@ module Gitlab ...@@ -73,7 +73,7 @@ module Gitlab
expose :id expose :id
expose :note, as: :body expose :note, as: :body
expose :author, using: Entities::UserBasic expose :author, using: Entities::UserBasic
expose :updated_at, :created_at expose :created_at
end end
class MRNote < Grape::Entity class MRNote < Grape::Entity
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment