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



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

def create(_env)
  true
end

#destroy(_env) ⇒ Object



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

def destroy(_env)
  true
end

#update(_env) ⇒ Object



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

def update(_env)
  true
end