diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-12-07 17:12:29 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-12-07 17:12:29 +0100 |
commit | 5a9a8d03a798c8dfe154e5db4ddf6bcb7a14fa2c (patch) | |
tree | de42e220cf35f130e2d2d3d6b2290e639d959d6d /lib/api/entities.rb | |
parent | cbcb8dbe702c0b1532327aeb2dc53caffb6e8ed9 (diff) | |
parent | bd5fb1b479f29df3c2150b6c375c1b7bffd28931 (diff) | |
download | gitlab-ce-5a9a8d03a798c8dfe154e5db4ddf6bcb7a14fa2c.tar.gz |
Merge branch 'master' into ui/dashboard-new-issue
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index 9f337bc3cc6..96b73df6af9 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -194,6 +194,7 @@ module API expose :author, using: Entities::UserBasic expose :created_at expose :system?, as: :system + expose :noteable_id, :noteable_type # upvote? and downvote? are deprecated, always return false expose :upvote?, as: :upvote expose :downvote?, as: :downvote @@ -224,6 +225,8 @@ module API expose :target_id, :target_type, :author_id expose :data, :target_title expose :created_at + expose :note, using: Entities::Note, if: ->(event, options) { event.note? } + expose :author, using: Entities::UserBasic, if: ->(event, options) { event.author } expose :author_username do |event, options| if event.author |