view config/routes.rb @ 131:4b5568b4a533

Also add time for quotes
author nanaya <me@nanaya.pro>
date Sun, 01 Oct 2017 04:04:35 +0900
parents d5a0d66ee457
children 5af9b537db86
line wrap: on
line source

Rails.application.routes.draw do
  root "tweets#index"

  get "*id" => "tweets#show", :defaults => { :format => :atom }, :as => "tweet"
end