annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4aa8194a1733 Initial.
Edho Arief <edho@myconan.net>
parents:
diff changeset
1 Zeropaste::Application.routes.draw do
40
a81fb558f954 root_path is new_paste_path. Not aliased because it's :effort:.
Edho Arief <edho@myconan.net>
parents: 8
diff changeset
2 resources :pastes, :only => [:show, :create], :path => '/'
65
1787e1fd3d16 Allow posting pastes using json/xml.
Edho Arief <edho@myconan.net>
parents: 40
diff changeset
3 post 'pastes' => 'pastes#create', :format => [:json, :xml]
4
23178d3de796 Slim controller (this app barely has any function)
Edho Arief <edho@myconan.net>
parents: 2
diff changeset
4 root :to => 'pastes#new'
0
4aa8194a1733 Initial.
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 end