Sha256: 43eb072632ff50713cdc7ff505a358b138b084aca331629844c3e5d8b3593bf4
Contents?: true
Size: 638 Bytes
Versions: 34
Compression:
Stored size: 638 Bytes
Contents
# frozen_string_literal: true module Decidim # A command with the business logic to invite an user to an organization. class InviteUserAgain < Rectify::Command # Public: Initializes the command. # # user - The user that receives the invitation instructions. # instructions - The invitation instructions that is sent to the user. def initialize(user, instructions) @user = user @instructions = instructions end def call user.invite!(user.invited_by, invitation_instructions: instructions) broadcast(:ok) end private attr_reader :user, :instructions end end
Version data entries
34 entries across 34 versions & 1 rubygems