view config/routes.rb @ 264:4f86037f6e6a

Identifiable rate limited client
author nanaya <me@nanaya.net>
date Sun, 09 Feb 2025 03:48:26 +0900
parents e2150dce4e90
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