-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes
25 lines (23 loc) · 1.75 KB
/
routes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Routes
# This file defines all application routes (Higher priority routes first)
# https://www.playframework.com/documentation/latest/ScalaRouting
# ~~~~
# An example controller showing a sample home page
GET / controllers.HomeController.index()
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)
#GET /ws controllers.WebsocketController.websocket
#POST /api/webhooks/start controllers.WebhooksController.start
#POST /api/webhooks/stop controllers.WebhooksController.stop
#POST /api/webhooks/register controllers.WebhooksController.register
POST /api/slack/slash controllers.SlackSlashCommandController.slashCommand
GET /api/slack/auth controllers.SlackAuthController.authRedirect(code: Option[String], error: Option[String], state: Option[String])
POST /api/slack/events controllers.SlackEventsController.eventsAPI()
GET /api/auth0/config controllers.Auth0Controller.configuration()
GET /api/auth0/secret controllers.Auth0Controller.secret(userId: Option[String])
GET /feedback controllers.HomeController.feedbackPage()
GET /support controllers.HomeController.supportPage()
GET /privacy_policy controllers.HomeController.privacyPolicy()
GET /terms_and_conditions controllers.HomeController.termsAndConditions()
GET /website_disclaimer controllers.HomeController.websiteDisclaimer()
POST /email_form controllers.HomeController.postEmailForm()