Mercurial > zeropaste
annotate config/routes.rb @ 191:4e409ac7082d
Also expires the page upon deletion.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Sat, 23 Feb 2013 14:53:47 +0900 |
parents | b4b7a29b70f6 |
children | 953d284ec195 |
rev | line source |
---|---|
0 | 1 Zeropaste::Application.routes.draw do |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
68
diff
changeset
|
2 resources :pastes, :only => [:show, :create, :destroy], :path => '/' |
68
bb5f98459aac
Format check requires a regex, not an array.
Edho Arief <edho@myconan.net>
parents:
66
diff
changeset
|
3 post 'pastes' => 'pastes#create', :format => /(json|xml|txt)/ |
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 | 5 end |