Skip to content

Instantly share code, notes, and snippets.

@madsheep
Last active August 29, 2015 14:00
Show Gist options
  • Save madsheep/877f42c3bc6aaf95e162 to your computer and use it in GitHub Desktop.
Save madsheep/877f42c3bc6aaf95e162 to your computer and use it in GitHub Desktop.
class Membership
belongs_to :user
belogns_to :group
after_save :send_notifications, if: ->(m) { m.accepted_changed? && m.accepted? }
def send_notifications
NotificationMailer.accepted(self, user).deliver!
PushNotifcations::NewMembership.new(self, user).dispatch!
admins = group.admins - user
admins.each do |admin|
NotificationMailer.accepted_admin(self, admin).deliver!
PushNotifcations::NewMembershipForAdmin.new(self, user).dispatch!
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment