2017-08-14 06:35:58 -04:00
|
|
|
- @gfm_form = true
|
2017-08-17 13:27:11 -04:00
|
|
|
|
2014-12-25 07:32:49 -05:00
|
|
|
- content_for :note_actions do
|
2015-06-26 09:55:56 -04:00
|
|
|
- if can?(current_user, :update_issue, @issue)
|
2017-05-24 18:52:54 -04:00
|
|
|
= 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'
|
2015-04-26 18:43:02 -04:00
|
|
|
|
2019-02-20 09:51:06 -05:00
|
|
|
%section.issuable-discussion.js-vue-notes-event
|
2018-10-06 13:16:40 -04:00
|
|
|
#js-vue-notes{ data: { notes_data: notes_data(@issue).to_json,
|
2018-02-27 19:10:43 -05:00
|
|
|
noteable_data: serialize_issuable(@issue),
|
2018-06-21 08:22:40 -04:00
|
|
|
noteable_type: 'Issue',
|
|
|
|
target_type: 'issue',
|
2018-10-23 05:49:45 -04:00
|
|
|
current_user_data: UserSerializer.new.represent(current_user, {only_path: true}, CurrentUserEntity).to_json } }
|