mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
- message: Add MarkSeen to Manager, StoreManager. - rest: Add PATCH for /mailbox/name/id. - rest: Add MailboxMarkSeenV1 handler. - rest: Add Seen to model. - rest: Update handlers to set Seen. - rest: Add doJSONBody func.
26 lines
1.2 KiB
Go
26 lines
1.2 KiB
Go
package rest
|
|
|
|
import "github.com/gorilla/mux"
|
|
import "github.com/jhillyerd/inbucket/pkg/server/web"
|
|
|
|
// SetupRoutes populates the routes for the REST interface
|
|
func SetupRoutes(r *mux.Router) {
|
|
// API v1
|
|
r.Path("/api/v1/mailbox/{name}").Handler(
|
|
web.Handler(MailboxListV1)).Name("MailboxListV1").Methods("GET")
|
|
r.Path("/api/v1/mailbox/{name}").Handler(
|
|
web.Handler(MailboxPurgeV1)).Name("MailboxPurgeV1").Methods("DELETE")
|
|
r.Path("/api/v1/mailbox/{name}/{id}").Handler(
|
|
web.Handler(MailboxShowV1)).Name("MailboxShowV1").Methods("GET")
|
|
r.Path("/api/v1/mailbox/{name}/{id}").Handler(
|
|
web.Handler(MailboxMarkSeenV1)).Name("MailboxMarkSeenV1").Methods("PATCH")
|
|
r.Path("/api/v1/mailbox/{name}/{id}").Handler(
|
|
web.Handler(MailboxDeleteV1)).Name("MailboxDeleteV1").Methods("DELETE")
|
|
r.Path("/api/v1/mailbox/{name}/{id}/source").Handler(
|
|
web.Handler(MailboxSourceV1)).Name("MailboxSourceV1").Methods("GET")
|
|
r.Path("/api/v1/monitor/messages").Handler(
|
|
web.Handler(MonitorAllMessagesV1)).Name("MonitorAllMessagesV1").Methods("GET")
|
|
r.Path("/api/v1/monitor/messages/{name}").Handler(
|
|
web.Handler(MonitorMailboxMessagesV1)).Name("MonitorMailboxMessagesV1").Methods("GET")
|
|
}
|