diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-12-04 13:51:30 +0100 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-12-04 13:51:30 +0100 |
commit | 4de7f32c60ea1f61768f9e8b18c3dca3edae9fdb (patch) | |
tree | 18b188cf9706c6e6361dff6c0f4adfdcc3def9cd /lib | |
parent | 1f5a6eb2576b17deee3942ea5e1f598bf3d4da8c (diff) | |
parent | 3227a5ead22c90873794b0c0e4c788436283fb3e (diff) | |
download | gitlab-ce-4de7f32c60ea1f61768f9e8b18c3dca3edae9fdb.tar.gz |
Merge branch 'extend-events-api'
Diffstat (limited to 'lib')
-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 |