Class: Hyrax::BatchCreateSuccessService

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

Instance Attribute Summary collapse

Attributes inherited from MessageUserService

#file_set

Instance Method Summary collapse

Methods inherited from MessageUserService

#call

Constructor Details

#initialize(user) ⇒ BatchCreateSuccessService

Returns a new instance of BatchCreateSuccessService.



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

def initialize(user)
  @user = user
end

Instance Attribute Details

#userObject (readonly)

Returns the value of attribute user.



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

def user
  @user
end

Instance Method Details

#messageObject



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

def message
  "The batch create for #{user} passed."
end

#subjectObject



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

def subject
  'Passing batch create'
end