Mercurial > zeropaste
view config/routes.rb @ 500:062723d1f66c
Also ignore packs directory
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 15 Dec 2024 22:36:06 +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