14 lines
403 B
Ruby
14 lines
403 B
Ruby
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
|
|
module Job
|
|
class InviteUserByEmail < Base
|
|
@queue = :mail
|
|
def self.perform(sender_id, email, aspect_id, invite_message)
|
|
user = User.find(sender_id)
|
|
user.invite_user(aspect_id, 'email', email, invite_message)
|
|
end
|
|
end
|
|
end
|