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
|
|
|
|
2017-08-01 13:23:42 -04:00
|
|
|
%section.js-vue-notes-event
|
2017-08-17 13:27:11 -04:00
|
|
|
#js-vue-notes{ data: { discussions_path: discussions_project_issue_path(@project, @issue, format: :json),
|
|
|
|
register_path: new_session_path(:user, redirect_to_referer: 'yes', anchor: 'register-pane'),
|
2017-07-27 16:24:05 -04:00
|
|
|
new_session_path: new_session_path(:user, redirect_to_referer: 'yes'),
|
2017-08-17 13:25:56 -04:00
|
|
|
markdown_docs_path: help_page_path('user/markdown'),
|
|
|
|
quick_actions_docs_path: help_page_path('user/project/quick_actions'),
|
2017-08-17 12:55:04 -04:00
|
|
|
notes_path: notes_url,
|
2018-02-09 12:07:20 -05:00
|
|
|
close_issue_path: issue_path(@issue, issue: { state_event: :close }, format: 'json'),
|
|
|
|
reopen_issue_path: issue_path(@issue, issue: { state_event: :reopen }, format: 'json'),
|
2017-07-28 05:46:46 -04:00
|
|
|
last_fetched_at: Time.now.to_i,
|
2017-11-30 17:44:41 -05:00
|
|
|
noteable_data: serialize_issuable(@issue),
|
2017-12-04 21:18:45 -05:00
|
|
|
current_user_data: UserSerializer.new.represent(current_user, only_path: true).to_json } }
|