Remove checks if issue.author is present
This commit is contained in:
parent
b0e30189a0
commit
ae9b771797
4 changed files with 12 additions and 30 deletions
|
@ -37,8 +37,7 @@
|
||||||
%ul
|
%ul
|
||||||
- if can_update_issue
|
- if can_update_issue
|
||||||
%li= link_to 'Edit', edit_project_issue_path(@project, @issue)
|
%li= link_to 'Edit', edit_project_issue_path(@project, @issue)
|
||||||
/ TODO: simplify condition back #36860
|
- unless current_user == @issue.author
|
||||||
- if @issue.author && current_user != @issue.author
|
|
||||||
%li= link_to 'Report abuse', new_abuse_report_path(user_id: @issue.author.id, ref_url: issue_url(@issue))
|
%li= link_to 'Report abuse', new_abuse_report_path(user_id: @issue.author.id, ref_url: issue_url(@issue))
|
||||||
- if can_update_issue
|
- if can_update_issue
|
||||||
%li= link_to 'Close issue', issue_path(@issue, issue: { state_event: :close }, format: 'json'), class: "btn-close js-btn-issue-action #{issue_button_visibility(@issue, true)}", title: 'Close issue'
|
%li= link_to 'Close issue', issue_path(@issue, issue: { state_event: :close }, format: 'json'), class: "btn-close js-btn-issue-action #{issue_button_visibility(@issue, true)}", title: 'Close issue'
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
class: "hidden-xs hidden-sm btn btn-grouped btn-reopen js-btn-issue-action #{issuable_button_visibility(issuable, false)}", title: "Reopen #{display_issuable_type}"
|
class: "hidden-xs hidden-sm btn btn-grouped btn-reopen js-btn-issue-action #{issuable_button_visibility(issuable, false)}", title: "Reopen #{display_issuable_type}"
|
||||||
- elsif can_update && !is_current_user
|
- elsif can_update && !is_current_user
|
||||||
= render 'shared/issuable/close_reopen_report_toggle', issuable: issuable
|
= render 'shared/issuable/close_reopen_report_toggle', issuable: issuable
|
||||||
- elsif issuable.author
|
- else
|
||||||
/ TODO: change back to else #36860
|
|
||||||
= link_to 'Report abuse', new_abuse_report_path(user_id: issuable.author.id, ref_url: issuable_url(issuable)),
|
= link_to 'Report abuse', new_abuse_report_path(user_id: issuable.author.id, ref_url: issuable_url(issuable)),
|
||||||
class: 'hidden-xs hidden-sm btn btn-grouped btn-close-color', title: 'Report abuse'
|
class: 'hidden-xs hidden-sm btn btn-grouped btn-close-color', title: 'Report abuse'
|
||||||
|
|
|
@ -37,15 +37,13 @@
|
||||||
|
|
||||||
%li.divider.droplab-item-ignore
|
%li.divider.droplab-item-ignore
|
||||||
|
|
||||||
/ TODO: remove condition #36860
|
%li.report-item{ data: { text: 'Report abuse', url: new_abuse_report_path(user_id: issuable.author.id, ref_url: issuable_url(issuable)),
|
||||||
- if issuable.author
|
button_class: "#{button_class} btn-close-color", toggle_class: "#{toggle_class} btn-close-color", method: '' } }
|
||||||
%li.report-item{ data: { text: 'Report abuse', url: new_abuse_report_path(user_id: issuable.author.id, ref_url: issuable_url(issuable)),
|
%button.btn.btn-transparent
|
||||||
button_class: "#{button_class} btn-close-color", toggle_class: "#{toggle_class} btn-close-color", method: '' } }
|
= icon('check', class: 'icon')
|
||||||
%button.btn.btn-transparent
|
.description
|
||||||
= icon('check', class: 'icon')
|
%strong.title Report abuse
|
||||||
.description
|
%p.text
|
||||||
%strong.title Report abuse
|
Report
|
||||||
%p.text
|
= display_issuable_type.pluralize
|
||||||
Report
|
that are abusive, inappropriate or spam.
|
||||||
= display_issuable_type.pluralize
|
|
||||||
that are abusive, inappropriate or spam.
|
|
||||||
|
|
|
@ -40,18 +40,4 @@ feature 'Issue Detail', :js do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when authored by a user who is later deleted' do
|
|
||||||
before do
|
|
||||||
issue.update_attribute(:author_id, nil)
|
|
||||||
sign_in(user)
|
|
||||||
visit project_issue_path(project, issue)
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'shows the issue' do
|
|
||||||
page.within('.issuable-details') do
|
|
||||||
expect(find('h2')).to have_content(issue.title)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue