mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
- No UI to access, just append /mailbox to /monitor URL
- Changed API URLs:
- /api/v1/monitor/messages - all
- /api/v1/monitor/messages/{name} - specific
36 lines
1.5 KiB
Go
36 lines
1.5 KiB
Go
// Package webui powers Inbucket's web GUI
|
|
package webui
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
"github.com/jhillyerd/inbucket/httpd"
|
|
)
|
|
|
|
// SetupRoutes populates routes for the webui into the provided Router
|
|
func SetupRoutes(r *mux.Router) {
|
|
r.Path("/").Handler(
|
|
httpd.Handler(RootIndex)).Name("RootIndex").Methods("GET")
|
|
r.Path("/monitor").Handler(
|
|
httpd.Handler(RootMonitor)).Name("RootMonitor").Methods("GET")
|
|
r.Path("/monitor/{name}").Handler(
|
|
httpd.Handler(RootMonitorMailbox)).Name("RootMonitorMailbox").Methods("GET")
|
|
r.Path("/status").Handler(
|
|
httpd.Handler(RootStatus)).Name("RootStatus").Methods("GET")
|
|
r.Path("/link/{name}/{id}").Handler(
|
|
httpd.Handler(MailboxLink)).Name("MailboxLink").Methods("GET")
|
|
r.Path("/mailbox").Handler(
|
|
httpd.Handler(MailboxIndex)).Name("MailboxIndex").Methods("GET")
|
|
r.Path("/mailbox/{name}").Handler(
|
|
httpd.Handler(MailboxList)).Name("MailboxList").Methods("GET")
|
|
r.Path("/mailbox/{name}/{id}").Handler(
|
|
httpd.Handler(MailboxShow)).Name("MailboxShow").Methods("GET")
|
|
r.Path("/mailbox/{name}/{id}/html").Handler(
|
|
httpd.Handler(MailboxHTML)).Name("MailboxHtml").Methods("GET")
|
|
r.Path("/mailbox/{name}/{id}/source").Handler(
|
|
httpd.Handler(MailboxSource)).Name("MailboxSource").Methods("GET")
|
|
r.Path("/mailbox/dattach/{name}/{id}/{num}/{file}").Handler(
|
|
httpd.Handler(MailboxDownloadAttach)).Name("MailboxDownloadAttach").Methods("GET")
|
|
r.Path("/mailbox/vattach/{name}/{id}/{num}/{file}").Handler(
|
|
httpd.Handler(MailboxViewAttach)).Name("MailboxViewAttach").Methods("GET")
|
|
}
|