summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorMarin Jankovski <maxlazio@gmail.com>2014-09-30 11:28:43 +0200
committerMarin Jankovski <maxlazio@gmail.com>2014-09-30 11:28:43 +0200
commit75eacf4d4469fb533f60f573733d47a42d3ad7e0 (patch)
tree6f4e65a623da1fd83ccbd85b6116c47892a5c2c1 /app/views
parentc20c2c83859bf7ba699c085a1baf0ee1f1a6da7a (diff)
downloadgitlab-ce-75eacf4d4469fb533f60f573733d47a42d3ad7e0.tar.gz
Update email templates for email on push service with links to commit and repository.
Diffstat (limited to 'app/views')
-rw-r--r--app/views/notify/repository_push_email.html.haml4
-rw-r--r--app/views/notify/repository_push_email.text.haml4
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/notify/repository_push_email.html.haml b/app/views/notify/repository_push_email.html.haml
index 0358810afdc..3cf50bf0826 100644
--- a/app/views/notify/repository_push_email.html.haml
+++ b/app/views/notify/repository_push_email.html.haml
@@ -1,11 +1,11 @@
-%h3 #{@author.name} pushed to #{@branch} at #{@project.name_with_namespace}
+%h3 #{@author.name} pushed to #{@branch} at #{link_to @project.name_with_namespace, project_url(@project)}
%h4 Commits:
%ul
- @commits.each do |commit|
%li
- %strong #{commit.short_id}
+ %strong #{link_to commit.short_id, project_commit_url(@project, commit)}
%span by #{commit.author_name}
%pre #{commit.safe_message}
diff --git a/app/views/notify/repository_push_email.text.haml b/app/views/notify/repository_push_email.text.haml
index 4d7c972a16a..6f5f9eda2c5 100644
--- a/app/views/notify/repository_push_email.text.haml
+++ b/app/views/notify/repository_push_email.text.haml
@@ -1,9 +1,9 @@
-#{@author.name} pushed to #{@branch} at #{@project.name_with_namespace}
+#{@author.name} pushed to #{@branch} at #{link_to @project.name_with_namespace, project_url(@project)}
\
Commits:
- @commits.each do |commit|
- #{commit.short_id} by #{commit.author_name}
+ #{link_to commit.short_id, project_commit_url(@project, commit)} by #{commit.author_name}
#{commit.safe_message}
\- - - - -
\