scinote-web/app/helpers/notifications_helper.rb

32 lines
1 KiB
Ruby
Raw Normal View History

module NotificationsHelper
2016-10-05 16:52:27 +08:00
def send_email_notification(user, notification)
AppMailer.delay.notification(user, notification)
end
2016-11-07 22:31:06 +08:00
# generate assignment notification
def generate_notification(user, target_user, team, role)
if team
title = I18n.t('notifications.unassign_user_from_team',
2016-11-08 18:20:14 +08:00
unassigned_user: target_user.name,
team: team.name,
2016-11-08 18:20:14 +08:00
unassigned_by_user: user.name)
title = I18n.t('notifications.assign_user_to_team',
2016-11-08 18:20:14 +08:00
assigned_user: target_user.name,
role: role,
team: team.name,
2016-11-08 18:20:14 +08:00
assigned_by_user: user.name) if role
message = "#{I18n.t('search.index.team')} #{team.name}"
2016-11-07 22:31:06 +08:00
end
notification = Notification.create(
type_of: :assignment,
title: sanitize_input(title),
message: sanitize_input(message)
2016-11-07 22:31:06 +08:00
)
if target_user.assignments_notification
UserNotification.create(notification: notification, user: target_user)
end
end
end