annotate config/routes.rb @ 446:86729239f2de

Update license wording and year Based on original ISC license as currently used by OpenBSD.
author nanaya <me@myconan.net>
date Sat, 25 Mar 2017 17:58:49 +0900
parents 68eb23b52864
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
431
68eb23b52864 Rails 5 \o/
nanaya <me@myconan.net>
parents: 309
diff changeset
1 Rails.application.routes.draw do
309
9fe8c29c27c4 Standardize syntax.
edogawaconan <me@myconan.net>
parents: 208
diff changeset
2 post "(pastes)" => "pastes#create", :format => /(html|json|xml|txt)/, :as => "pastes"
9fe8c29c27c4 Standardize syntax.
edogawaconan <me@myconan.net>
parents: 208
diff changeset
3 resources :pastes, :only => [:show, :destroy], :path => "/"
9fe8c29c27c4 Standardize syntax.
edogawaconan <me@myconan.net>
parents: 208
diff changeset
4 root :to => "pastes#new"
0
4aa8194a1733 Initial.
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 end