little fixes for deploy
This commit is contained in:
parent
2d50f24be6
commit
2d0d0403b1
3 changed files with 3 additions and 2 deletions
|
@ -4,7 +4,7 @@ class FollowService
|
||||||
|
|
||||||
def self.follow(entity, user, reason)
|
def self.follow(entity, user, reason)
|
||||||
|
|
||||||
#return unless is_tester(user)
|
return unless is_tester(user)
|
||||||
|
|
||||||
follow = Follow.where(followed: entity, user: user).first_or_create
|
follow = Follow.where(followed: entity, user: user).first_or_create
|
||||||
if FollowReason::REASONS.include?(reason) && !follow.follow_reason.read_attribute(reason)
|
if FollowReason::REASONS.include?(reason) && !follow.follow_reason.read_attribute(reason)
|
||||||
|
|
|
@ -2,5 +2,6 @@
|
||||||
<div style="padding: 16px; background: white; text-align: left;">
|
<div style="padding: 16px; background: white; text-align: left;">
|
||||||
<%= raw @notification.body %>
|
<%= raw @notification.body %>
|
||||||
<p style="font-size: 12px;">Make sense with Metamaps</p>
|
<p style="font-size: 12px;">Make sense with Metamaps</p>
|
||||||
|
<hr>
|
||||||
<%= render partial: 'shared/mailer_unsubscribe_link' %>
|
<%= render partial: 'shared/mailer_unsubscribe_link' %>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -18,7 +18,7 @@ class NotificationIcon extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<a className={linkClasses} href="/notifications">
|
<a className={linkClasses} href="/notifications" target="_blank">
|
||||||
<div className="tooltipsUnder">
|
<div className="tooltipsUnder">
|
||||||
Notifications
|
Notifications
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue