Class: Hyrax::Actors::Terminator

Inherits:
Object
  • Object
show all
Defined in:
app/actors/hyrax/actors/terminator.rb

Overview

This is always the last middleware on the actor middleware stack.

Instance Method Summary collapse

Instance Method Details

#create(_env) ⇒ Object



5
6
7
# File 'app/actors/hyrax/actors/terminator.rb', line 5

def create(_env)
  true
end

#destroy(_env) ⇒ Object



13
14
15
# File 'app/actors/hyrax/actors/terminator.rb', line 13

def destroy(_env)
  true
end

#update(_env) ⇒ Object



9
10
11
# File 'app/actors/hyrax/actors/terminator.rb', line 9

def update(_env)
  true
end