debian-mirror-gitlab/app/views/projects/issues/_discussion.html.haml

14 lines
1,023 B
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- @gfm_form = true
2015-04-26 12:48:37 +05:30
- content_for :note_actions do
2015-09-11 14:41:01 +05:30
- if can?(current_user, :update_issue, @issue)
2017-09-10 17:25:29 +05:30
= 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-09-11 14:41:01 +05:30
2019-05-30 16:15:17 +05:30
%section.js-vue-notes-event
2018-12-05 23:21:45 +05:30
#js-vue-notes{ data: { notes_data: notes_data(@issue).to_json,
2018-03-27 19:54:05 +05:30
noteable_data: serialize_issuable(@issue),
2018-11-08 19:23:39 +05:30
noteable_type: 'Issue',
target_type: 'issue',
2018-12-13 13:39:08 +05:30
current_user_data: UserSerializer.new.represent(current_user, {only_path: true}, CurrentUserEntity).to_json } }