diff options
author | Kushal Pandya <kushal@gitlab.com> | 2018-04-05 13:57:26 +0530 |
---|---|---|
committer | Kushal Pandya <kushal@gitlab.com> | 2018-04-06 14:26:40 +0530 |
commit | a983583ae8f3dd3e8cafb13d3934636cb095cfcc (patch) | |
tree | 1bf32d5c085c7d1d64a211a6b2815a2476485ff3 | |
parent | 223eeae1a774df4f8d7f132040ba10547184ec68 (diff) | |
download | gitlab-ce-a983583ae8f3dd3e8cafb13d3934636cb095cfcc.tar.gz |
Set `noteable_type` to use in notesApp
-rw-r--r-- | app/views/projects/issues/_discussion.html.haml | 1 | ||||
-rw-r--r-- | app/views/projects/merge_requests/show.html.haml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/views/projects/issues/_discussion.html.haml b/app/views/projects/issues/_discussion.html.haml index cdfc3e232c5..816f2fa816d 100644 --- a/app/views/projects/issues/_discussion.html.haml +++ b/app/views/projects/issues/_discussion.html.haml @@ -8,4 +8,5 @@ %section.js-vue-notes-event #js-vue-notes{ data: { notes_data: notes_data(@issue), noteable_data: serialize_issuable(@issue), + noteable_type: 'issue', current_user_data: UserSerializer.new.represent(current_user, only_path: true).to_json } } diff --git a/app/views/projects/merge_requests/show.html.haml b/app/views/projects/merge_requests/show.html.haml index 9866cc716ee..15a0e4d7ef5 100644 --- a/app/views/projects/merge_requests/show.html.haml +++ b/app/views/projects/merge_requests/show.html.haml @@ -80,6 +80,7 @@ - if has_vue_discussions_cookie? #js-vue-mr-discussions{ data: { notes_data: notes_data(@merge_request), noteable_data: serialize_issuable(@merge_request), + noteable_type: 'merge_request', current_user_data: UserSerializer.new.represent(current_user).to_json} } #commits.commits.tab-pane |