810a8b78b6
Backports template and Vue changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/9632 to CE
13 lines
1 KiB
Text
13 lines
1 KiB
Text
- @gfm_form = true
|
|
|
|
- content_for :note_actions do
|
|
- if can?(current_user, :update_issue, @issue)
|
|
= link_to 'Reopen issue', issue_path(@issue, issue: {state_event: :reopen}, format: 'json'), data: {original_text: "Reopen issue", alternative_text: "Comment & reopen issue"}, class: "btn btn-nr btn-reopen btn-comment js-note-target-reopen #{issue_button_visibility(@issue, false)}", title: 'Reopen issue'
|
|
= link_to 'Close issue', issue_path(@issue, issue: {state_event: :close}, format: 'json'), data: {original_text: "Close issue", alternative_text: "Comment & close issue"}, class: "btn btn-nr btn-close btn-comment js-note-target-close #{issue_button_visibility(@issue, true)}", title: 'Close issue'
|
|
|
|
%section.issuable-discussion.js-vue-notes-event
|
|
#js-vue-notes{ data: { notes_data: notes_data(@issue).to_json,
|
|
noteable_data: serialize_issuable(@issue),
|
|
noteable_type: 'Issue',
|
|
target_type: 'issue',
|
|
current_user_data: UserSerializer.new.represent(current_user, {only_path: true}, CurrentUserEntity).to_json } }
|