diff options
Diffstat (limited to 'plugins/caldav/routes.go')
-rw-r--r-- | plugins/caldav/routes.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/caldav/routes.go b/plugins/caldav/routes.go index 020882e..52f8d31 100644 --- a/plugins/caldav/routes.go +++ b/plugins/caldav/routes.go @@ -239,4 +239,22 @@ func registerRoutes(p *alps.GoPlugin, u *url.URL) { p.GET("/calendar/:path/update", updateEvent) p.POST("/calendar/:path/update", updateEvent) + + p.POST("/calendar/:path/delete", func(ctx *alps.Context) error { + path, err := parseObjectPath(ctx.Param("path")) + if err != nil { + return err + } + + c, _, err := getCalendar(u, ctx.Session) + if err != nil { + return err + } + + if err := c.RemoveAll(path); err != nil { + return fmt.Errorf("failed to delete calendar object: %v", err) + } + + return ctx.Redirect(http.StatusFound, "/calendar") + }) } |