view config/routes.rb @ 156:1abfa910d83e

Don't log, just throw
author nanaya <me@nanaya.pro>
date Sat, 28 Jul 2018 02:46:44 +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