1
1
# BirdWatch Routes
2
2
# ~~~~
3
3
4
- GET / controllers.Twitter.tweetList(q: String ?="")
5
- GET /search controllers.Twitter.tweetList(q: String ?="")
4
+ GET / controllers.Twitter.tweetList(q: String ?="")
5
+ GET /search controllers.Twitter.tweetList(q: String ?="")
6
6
7
7
# had to do this because I did not want people bookmarking the IP, which was on Twitter...
8
- GET /tweets controllers.Application.named
9
- GET /tweetFeed controllers.Twitter.tweetFeed(q: String ?= "")
10
- GET /rawTweetFeed controllers.Twitter.rawTweetFeed
8
+ GET /tweets controllers.Application.named
9
+ GET /tweetFeed controllers.Twitter.tweetFeed(q: String ?= "")
10
+ GET /rawTweetFeed controllers.Twitter.rawTweetFeed
11
11
12
- GET /countFeed controllers.Twitter.countFeed
12
+ GET /countFeed controllers.Twitter.countFeed
13
13
14
- GET /accessLog controllers.AccessLog.index(token: String ?="")
14
+ GET /accessLog controllers.AccessLog.index(token: String ?="")
15
15
16
16
# Adding and removing topics from Twitter stream
17
- GET /topic/add controllers.Topics.add(topic: String ?="", token: String ?="")
18
- GET /topic/remove controllers.Topics.remove(topic: String ?="", token: String ?="")
17
+ GET /topic/add controllers.Topics.add(topic: String ?="", token: String ?="")
18
+ GET /topic/remove controllers.Topics.remove(topic: String ?="", token: String ?="")
19
19
20
20
# Tweets as JSON
21
- GET /tweets/latest controllers.Twitter.tweetsJson(n: Int ?= 50, q: String ?="")
22
- GET /rawTweets/latest controllers.Twitter.rawTweetsJson(n: Int ?= 50)
21
+ GET /tweets/latest controllers.Twitter.tweetsJson(n: Int ?= 50, q: String ?="")
22
+ GET /rawTweets/latest controllers.Twitter.rawTweetsJson(n: Int ?= 50)
23
23
24
- GET /tweets/replay/:results controllers.Twitter.tweetReplay(results: Int, delayMS: Int ?= 250)
24
+ GET /tweets/replay/:results controllers.Twitter.tweetReplay(results: Int, delayMS: Int ?= 250)
25
25
26
- GET /assets/*file controllers.Assets.at(path="/public", file)
26
+ GET /assets/*file controllers.Assets.at(path="/public", file)
27
+
28
+ GET /webjars/*file controllers.WebJarAssets.at(file)
0 commit comments