Method: Action#do_POST
- Defined in:
- lib/bloggit/server.rb
#do_POST(req, res) ⇒ Object
16 17 18 19 20 21 |
# File 'lib/bloggit/server.rb', line 16 def do_POST(req, res) @req = req; @res = res @content_type = "text/html" @res.body = post @res['Content-Type'] = @content_type end |