Commit 42ef89c9 authored by Nihad Abbasov's avatar Nihad Abbasov

API: expose created date for project hooks and user SSH keys

parent 968c09ae
v 4.0.0 v 4.0.0
- [API] expose created date for hooks and SSH keys
- [API] list, create issue notes - [API] list, create issue notes
- [API] list, create snippet notes - [API] list, create snippet notes
- [API] list, create wall notes - [API] list, create wall notes
......
...@@ -14,7 +14,7 @@ module Gitlab ...@@ -14,7 +14,7 @@ module Gitlab
end end
class Hook < Grape::Entity class Hook < Grape::Entity
expose :id, :url expose :id, :url, :created_at
end end
class Project < Grape::Entity class Project < Grape::Entity
...@@ -61,7 +61,7 @@ module Gitlab ...@@ -61,7 +61,7 @@ module Gitlab
end end
class SSHKey < Grape::Entity class SSHKey < Grape::Entity
expose :id, :title, :key expose :id, :title, :key, :created_at
end end
class MergeRequest < Grape::Entity class MergeRequest < 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