view config/routes.rb @ 202:d12f671185a8

Update gems
author nanaya <me@nanaya.pro>
date Sat, 22 Aug 2020 04:38:30 +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