Skip to content
Snippets Groups Projects
Commit aaa93d5a authored by Douwe Maan's avatar Douwe Maan
Browse files

Use issue editor as cross reference comment author when issue is edited with a new mention.

parent 940d68cc
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -12,6 +12,7 @@ v 8.2.0 (unreleased)
- Use git follow flag for commits page when retrieve history for file or directory
- Show merge request CI status on merge requests index page
- Fix: 500 error returned if destroy request without HTTP referer (Kazuki Shimizu)
- Use issue editor as cross reference comment author when issue is edited with a new mention.
 
v 8.1.1
- Fix cloning Wiki repositories via HTTP (Stan Hu)
Loading
Loading
Loading
Loading
@@ -35,7 +35,7 @@ module Issues
create_title_change_note(issue, issue.previous_changes['title'].first)
end
 
issue.create_new_cross_references!
issue.create_new_cross_references!(current_user)
execute_hooks(issue, 'update')
end
 
Loading
Loading
Loading
Loading
@@ -59,7 +59,7 @@ module MergeRequests
merge_request.mark_as_unchecked
end
 
merge_request.create_new_cross_references!
merge_request.create_new_cross_references!(current_user)
execute_hooks(merge_request, 'update')
end
 
Loading
Loading
Loading
Loading
@@ -4,7 +4,7 @@ module Notes
return note unless note.editable?
 
note.update_attributes(params.merge(updated_by: current_user))
note.create_new_cross_references!
note.create_new_cross_references!(current_user)
note.reset_events_cache
 
note
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment