-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathroutes
More file actions
14 lines (10 loc) · 709 Bytes
/
Copy pathroutes
File metadata and controls
14 lines (10 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# BirdWatch Routes
GET / controllers.BirdWatch.index
GET /tweetFeed controllers.BirdWatch.tweetFeed(q: String ?= "*")
POST /tweets/search controllers.BirdWatch.search
# Adding and removing topics from Twitter stream
GET /topic/add controllers.Topics.add(topic: String ?="", token: String ?="")
GET /topic/remove controllers.Topics.remove(topic: String ?="", token: String ?="")
GET /assets/*file controllers.Assets.at(path="/public", file)
GET /webjars/*file controllers.WebJarAssets.at(file)
#GET / controllers.Assets.at(path="/public", file="/index.html")