Mercurial > zeropaste
view config/routes.rb @ 65:1787e1fd3d16
Allow posting pastes using json/xml.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Thu, 04 Oct 2012 10:09:11 +0700 |
parents | a81fb558f954 |
children | e0817b84c01b |
line wrap: on
line source
Zeropaste::Application.routes.draw do resources :pastes, :only => [:show, :create], :path => '/' post 'pastes' => 'pastes#create', :format => [:json, :xml] root :to => 'pastes#new' end