2016-08-27 10:49:46 +08:00
|
|
|
# Routes
|
|
|
|
# This file defines all application routes (Higher priority routes first)
|
|
|
|
# ~~~~
|
|
|
|
|
|
|
|
# Map static resources from the /public folder to the /assets URL path
|
|
|
|
GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)
|
|
|
|
|
|
|
|
# Serve GitPitch GIST iFrame for {gid}.
|
|
|
|
GET /pitchme/gist/:gid com.gitpitch.controllers.PitchController.gist(gid:String)
|
|
|
|
|
|
|
|
# Serve PITCHME.pdf.
|
2016-11-28 20:07:58 +08:00
|
|
|
GET /pitchme/print/:grs/:user/:repo/:b/:t/PITCHME.pdf com.gitpitch.controllers.PitchController.print(grs:String, user:String, repo:String, b:String, t:String, p:String ?= null, n:String ?= null)
|
2016-08-27 10:49:46 +08:00
|
|
|
|
|
|
|
# Serve PITCHME.zip.
|
2016-11-28 20:07:58 +08:00
|
|
|
GET /pitchme/offline/:grs/:user/:repo/:b/:t/PITCHME.zip com.gitpitch.controllers.PitchController.offline(grs:String, user:String, repo:String, b:String, t:String, p:String ?= null, n:String ?= null)
|
2016-08-27 10:49:46 +08:00
|
|
|
|
|
|
|
# Redirect to GitHub OAuth Access Request
|
|
|
|
# GET /pitchme/authreq com.gitpitch.controllers.AuthController.authreq()
|
|
|
|
|
|
|
|
# Handle GitHub OAuth Callback
|
|
|
|
# GET /pitchme/authorized com.gitpitch.controllers.AuthController.authorized(code:String ?= null, state:String ?= null)
|
|
|
|
|
|
|
|
# Serve PITCHME.md markdown.
|
2016-11-28 20:07:58 +08:00
|
|
|
GET /pitchme/markdown/:grs/:user/:repo/:b/PITCHME.md com.gitpitch.controllers.PitchController.markdown(grs:String, user:String, repo:String, b:String, p:String ?= null)
|
2016-08-27 10:49:46 +08:00
|
|
|
|
|
|
|
# Serve PITCHME.md slideshow.
|
2017-02-23 12:07:23 +08:00
|
|
|
GET /pitchme/slideshow/:grs/:user/:repo/:b com.gitpitch.controllers.PitchController.slideshow(grs:String, user:String, repo:String, b:String, t:String ?= null, p:String ?= null, n:String ?= null, fragments:String ?= null, offline:String ?= null, webprint:String ?= null)
|
2016-08-27 10:49:46 +08:00
|
|
|
|
|
|
|
# Serve PITCHME.md landing page.
|
2016-11-28 20:07:58 +08:00
|
|
|
GET /:user/:repo/:b com.gitpitch.controllers.PitchController.landing(user:String, repo:String, b:String, grs:String ?= null, t:String ?= null, p:String?= null, n:String ?= null, offline:String ?= null)
|
2016-08-27 10:49:46 +08:00
|
|
|
|
|
|
|
# Serve PITCHME.md landing page, short URI format.
|
2016-11-28 20:07:58 +08:00
|
|
|
GET /:user/:repo com.gitpitch.controllers.PitchController.landing(user:String, repo:String, b:String ?= null, grs:String ?= null, t:String ?= null, p:String?= null, n:String ?= null, offline:String ?= null)
|
2016-08-27 10:49:46 +08:00
|
|
|
|
|
|
|
# Catch-all route redirect to website.
|
|
|
|
GET /*path com.gitpitch.controllers.PitchController.catchall(path:String)
|