Class: Hyrax::BatchCreateSuccessService

Inherits:
AbstractMessageService show all
Defined in:
app/services/hyrax/batch_create_success_service.rb

Instance Attribute Summary collapse

Attributes inherited from AbstractMessageService

#file_set

Instance Method Summary collapse

Methods inherited from AbstractMessageService

#call

Constructor Details

#initialize(user) ⇒ BatchCreateSuccessService

Returns a new instance of BatchCreateSuccessService.



6
7
8
# File 'app/services/hyrax/batch_create_success_service.rb', line 6

def initialize(user)
  @user = user
end

Instance Attribute Details

#userObject (readonly)

Returns the value of attribute user.



4
5
6
# File 'app/services/hyrax/batch_create_success_service.rb', line 4

def user
  @user
end

Instance Method Details

#messageObject



10
11
12
# File 'app/services/hyrax/batch_create_success_service.rb', line 10

def message
  I18n.t('hyrax.notifications.batch_create_success.message', user: user)
end

#subjectObject



14
15
16
# File 'app/services/hyrax/batch_create_success_service.rb', line 14

def subject
  I18n.t('hyrax.notifications.batch_create_success.subject')
end