view config/routes.rb @ 126:c9864cf35950

Now with explicit alt text
author nanaya <me@nanaya.pro>
date Wed, 30 Aug 2017 14:52:25 +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