Class: Services::NotifyNewRegistrationContext

Inherits:
Object
  • Object
show all
Defined in:
app/contexts/services/notify_new_registration_context.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(registration) ⇒ NotifyNewRegistrationContext

Returns a new instance of NotifyNewRegistrationContext.



11
12
13
14
# File 'app/contexts/services/notify_new_registration_context.rb', line 11

def initialize(registration)
  @registration = registration
  @registration.extend Services::NewRegistrationNotifier
end

Instance Attribute Details

#registrationObject

Returns the value of attribute registration.



5
6
7
# File 'app/contexts/services/notify_new_registration_context.rb', line 5

def registration
  @registration
end

Class Method Details

.call(registration) ⇒ Object



7
8
9
# File 'app/contexts/services/notify_new_registration_context.rb', line 7

def self.call(registration)
  NotifyNewRegistrationContext.new(registration).call
end

Instance Method Details

#callObject



16
17
18
# File 'app/contexts/services/notify_new_registration_context.rb', line 16

def call
  registration.notify
end