Mercurial > rsstweet
annotate config/routes.rb @ 223:ad6264cca788
Update to rails 7
author | nanaya <me@nanaya.pro> |
---|---|
date | Sat, 15 Jan 2022 02:39:53 +0900 |
parents | 5af9b537db86 |
children |
rev | line source |
---|---|
0 | 1 Rails.application.routes.draw do |
38
9e03bbbb1d43
Move static#index to tweet#index.
edogawaconan <me@myconan.net>
parents:
19
diff
changeset
|
2 root "tweets#index" |
0 | 3 |
165 | 4 get ":id/:name" => "tweets#show", :defaults => { :format => :atom }, :as => "tweet" |
5 get ":name" => "tweets#redirect" | |
0 | 6 end |