Class: FooRequest
- Inherits:
-
WebSystem::SimpleRequest
- Object
- Liza::Unit
- Liza::Controller
- WebSystem::Request
- WebSystem::SimpleRequest
- FooRequest
- Defined in:
- app/web/requests/foo_request.rb
Instance Attribute Summary
Attributes inherited from WebSystem::SimpleRequest
Instance Method Summary collapse
-
#call_index ⇒ Object
GET /foo.
-
#call_index! ⇒ Object
POST /foo.
Methods inherited from WebSystem::SimpleRequest
#_call_action, #action, #call, call, #format, #http_method, #qs, #request, #response_404, #segments
Methods inherited from Liza::Controller
color, inherited, on_connected
Methods inherited from Liza::Unit
const_missing, division, part, system, #system, test_class
Instance Method Details
#call_index ⇒ Object
GET /foo
5 6 7 |
# File 'app/web/requests/foo_request.rb', line 5 def call_index log "." end |
#call_index! ⇒ Object
POST /foo
11 12 13 |
# File 'app/web/requests/foo_request.rb', line 11 def call_index! log "." end |