API: expose created date for project hooks and user SSH keys
This commit is contained in:
parent
968c09ae91
commit
42ef89c98a
2 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
||||||
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
|
||||||
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
|
||||||
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
|
||||||
|
|
Loading…
Reference in a new issue