Skip to content
Snippets Groups Projects
Commit 36d858bc authored by Zeger-Jan van de Weg's avatar Zeger-Jan van de Weg
Browse files

Add #can_unsubscribe? to SentNotification

parent 58867eff
No related branches found
No related tags found
1 merge request!2068Unsubscribe from thread through link in email footer
Loading
@@ -62,6 +62,10 @@ class SentNotification < ActiveRecord::Base
Loading
@@ -62,6 +62,10 @@ class SentNotification < ActiveRecord::Base
end end
end end
   
def can_unsubscribe?
!for_commit?
end
def for_commit? def for_commit?
noteable_type == "Commit" noteable_type == "Commit"
end end
Loading
Loading
Loading
@@ -45,7 +45,7 @@
Loading
@@ -45,7 +45,7 @@
-# Don't link the host is the line below, one link in the email is easier to quickly click than two. -# Don't link the host is the line below, one link in the email is easier to quickly click than two.
You're receiving this email because of your account on #{Gitlab.config.gitlab.host}. You're receiving this email because of your account on #{Gitlab.config.gitlab.host}.
If you'd like to receive fewer emails, you can If you'd like to receive fewer emails, you can
- if @sent_notification && !@sent_notification.for_commit? - if @sent_notification && @sent_notification.can_unsubscribe?
= link_to "unsubscribe", unsubscribe_sent_notification_url(@sent_notification) = link_to "unsubscribe", unsubscribe_sent_notification_url(@sent_notification)
from this thread or from this thread or
adjust your notification settings. adjust your notification settings.
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