view config/routes.rb @ 180:0c101c8169e4

Swap unicorn with falcon Seems working.
author nanaya <me@nanaya.pro>
date Mon, 22 Oct 2018 15:24:39 +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