mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 09:37:02 +00:00
19 lines
702 B
Plaintext
19 lines
702 B
Plaintext
# Routes
|
|
# This file defines all application routes (Higher priority routes first)
|
|
# ~~~~
|
|
|
|
GET / Application.Index
|
|
GET /mailbox/{name} Mailbox.Index
|
|
GET /mailbox Mailbox.Index
|
|
GET /mailbox/list/{name} Mailbox.List
|
|
GET /mailbox/show/{name}/{id} Mailbox.Show
|
|
|
|
# Ignore favicon requests
|
|
GET /favicon.ico 404
|
|
|
|
# Map static resources from the /app/public folder to the /public path
|
|
GET /public/ staticDir:public
|
|
|
|
# Catch all
|
|
* /{controller}/{action} {controller}.{action}
|