Commit b13c21b7 authored by Alper Akgun's avatar Alper Akgun

Merge branch 'cablett-issue-due' into 'master'

Add link to issue in issue due email

See merge request gitlab-org/gitlab!50642
parents 2adcf62e 5885d242
%p.details %p.details
#{link_to @issue.author_name, user_url(@issue.author)}'s issue is due soon. #{link_to @issue.author_name, user_url(@issue.author)}'s issue #{issue_reference_link(@issue)} is due soon.
- if @issue.assignees.any? - if @issue.assignees.any?
%p %p
......
The following issue is due on <%= @issue.due_date %>: The following issue is due on <%= @issue.due_date %>:
Issue <%= @issue.iid %>: <%= url_for(project_issue_url(@issue.project, @issue)) %> Issue <%= @issue.iid %>: <%= issue_reference_link(@issue) %>
Author: <%= @issue.author_name %> Author: <%= @issue.author_name %>
<%= assignees_label(@issue) %> <%= assignees_label(@issue) %>
......
---
title: Add issue link to due date emails
merge_request: 50642
author:
type: changed
...@@ -224,6 +224,10 @@ RSpec.describe Notify do ...@@ -224,6 +224,10 @@ RSpec.describe Notify do
let(:model) { issue } let(:model) { issue }
end end
it 'contains a link to the issue' do
is_expected.to have_body_text(issue.to_reference(full: false))
end
it_behaves_like 'it should show Gmail Actions View Issue link' it_behaves_like 'it should show Gmail Actions View Issue link'
it_behaves_like 'an unsubscribeable thread' it_behaves_like 'an unsubscribeable thread'
it_behaves_like 'appearance header and footer enabled' it_behaves_like 'appearance header and footer enabled'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment