aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorrhenium <re4k@re4k.info>2013-05-30 00:54:47 +0900
committerrhenium <re4k@re4k.info>2013-05-30 00:54:47 +0900
commit75e30f750533af57057fd5a9b7f725218f4be7d0 (patch)
tree9f6f379530d75aeb12b705edbb00c98d03ac8271 /config
parent8d0657441ad76b23684d13f8790df2a3c0cb84ff (diff)
downloadaclog-75e30f750533af57057fd5a9b7f725218f4be7d0.tar.gz
add private account (!= protected Twitter account) feature
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 2419eb0..333b96c 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -54,7 +54,8 @@ Aclog::Application.routes.draw do
# TweetController / Tweets
scope ":screen_name" do
- get "/", action: "best", as: "user_best"
+ get "/", action: "index", as: "user"
+ get "/best", action: "best", as: "user_best"
get "/favorited", action: "favorited", as: "user_favorited"
get "/retweeted", action: "retweeted", as: "user_retweeted"
get "/recent", action: "recent", as: "user_recent"