view config/routes.rb @ 507:7ea98672ba1f default tip

Fix converted string
author nanaya <me@nanaya.net>
date Sat, 29 Mar 2025 19:09:48 +0900
parents d2ef59c9a4b4
children
line wrap: on
line source

Rails.application.routes.draw do
  post "(pastes)" => "pastes#create", :format => /(html|json|xml|txt)/, :as => "pastes"
  resources :pastes, only: [ :show, :destroy ], path: "/"
  root to: "pastes#new"
end