mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 09:37:02 +00:00
- ui: Fix favicon - webui: Changes to support serving Elm UI - Static files now served from `/` mount point. - Old UI handlers moved to `/serve` mount point, some will still be needed by the Elm UI; safe HTML and attachments for example. - Update dev-start.sh for new UI, with tip on how to build it. - ui: Detect browser host:port for websocket URL, - webui: Remove unused mailbox handlers, rename routes - Many routes not needed by Elm UI. - `/serve/mailbox/*` becomes `/serve/m/*`. - webui: Impl custom JSON message API for web UI, - ui: Refactor Mailbox view functions, - ui: Add body tabs for safe HTML and plain text, - webui: Format plain text for new UI, - ui: List attachments with view & download links,
28 lines
1.0 KiB
Go
28 lines
1.0 KiB
Go
// Package webui powers Inbucket's web GUI
|
|
package webui
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
"github.com/jhillyerd/inbucket/pkg/server/web"
|
|
)
|
|
|
|
// SetupRoutes populates routes for the webui into the provided Router.
|
|
func SetupRoutes(r *mux.Router) {
|
|
r.Path("/").Handler(
|
|
web.Handler(RootIndex)).Name("RootIndex").Methods("GET")
|
|
r.Path("/monitor").Handler(
|
|
web.Handler(RootMonitor)).Name("RootMonitor").Methods("GET")
|
|
r.Path("/monitor/{name}").Handler(
|
|
web.Handler(RootMonitorMailbox)).Name("RootMonitorMailbox").Methods("GET")
|
|
r.Path("/status").Handler(
|
|
web.Handler(RootStatus)).Name("RootStatus").Methods("GET")
|
|
r.Path("/m/{name}/{id}").Handler(
|
|
web.Handler(MailboxMessage)).Name("MailboxMessage").Methods("GET")
|
|
r.Path("/m/{name}/{id}/html").Handler(
|
|
web.Handler(MailboxHTML)).Name("MailboxHtml").Methods("GET")
|
|
r.Path("/m/{name}/{id}/source").Handler(
|
|
web.Handler(MailboxSource)).Name("MailboxSource").Methods("GET")
|
|
r.Path("/m/attach/{name}/{id}/{num}/{file}").Handler(
|
|
web.Handler(MailboxViewAttach)).Name("MailboxViewAttach").Methods("GET")
|
|
}
|