Mercurial > rsstweet
view config/routes.rb @ 251:43cbceac80ab
Remove model test and add client test
author | nanaya <me@nanaya.net> |
---|---|
date | Mon, 17 Jul 2023 20:54:04 +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