Class: Hyrax::BatchCreateSuccessService
- Inherits:
-
AbstractMessageService
- Object
- AbstractMessageService
- Hyrax::BatchCreateSuccessService
- Defined in:
- app/services/hyrax/batch_create_success_service.rb
Instance Attribute Summary collapse
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Attributes inherited from AbstractMessageService
Instance Method Summary collapse
-
#initialize(user) ⇒ BatchCreateSuccessService
constructor
A new instance of BatchCreateSuccessService.
- #message ⇒ Object
- #subject ⇒ Object
Methods inherited from AbstractMessageService
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
#user ⇒ Object (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
#message ⇒ Object
10 11 12 |
# File 'app/services/hyrax/batch_create_success_service.rb', line 10 def I18n.t('hyrax.notifications.batch_create_success.message', user: user) end |
#subject ⇒ Object
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 |