view config/routes.rb @ 194:5dd7d81f76e6

Update gems
author nanaya <me@nanaya.pro>
date Sun, 23 Feb 2020 18:56:15 +0900
parents 5af9b537db86
children
line wrap: on
line source

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

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