Class: Rakuna::Resource::Action

Inherits:
Webmachine::Resource
  • Object
show all
Defined in:
lib/rakuna/resource/action.rb

Overview

Action Resources perform tasks.

Instance Method Summary collapse

Instance Method Details

#allowed_methodsObject



7
8
9
# File 'lib/rakuna/resource/action.rb', line 7

def allowed_methods
  %w(POST)
end

#process_postObject



11
12
13
14
# File 'lib/rakuna/resource/action.rb', line 11

def process_post
  input
  true
end