invitation_job.rb 175 Bytes Edit Raw Blame History 1 2 3 4 5 class InvitationJob < Struct.new(:person, :contacts_to_invite, :message, :profile) def perform Invitation.invite(person, contacts_to_invite, message, profile) end end