Changeset 0.17.3 (#78)
This commit is contained in:
@@ -315,11 +315,14 @@ func main() {
|
||||
protected.GET("/notes", notes.List)
|
||||
protected.POST("/notes", notes.Create)
|
||||
protected.GET("/notes/search", notes.Search)
|
||||
protected.GET("/notes/search-titles", notes.SearchTitles)
|
||||
protected.GET("/notes/folders", notes.ListFolders)
|
||||
protected.GET("/notes/graph", notes.Graph)
|
||||
protected.POST("/notes/bulk-delete", notes.BulkDelete)
|
||||
protected.GET("/notes/:id", notes.Get)
|
||||
protected.PUT("/notes/:id", notes.Update)
|
||||
protected.DELETE("/notes/:id", notes.Delete)
|
||||
protected.GET("/notes/:id/backlinks", notes.Backlinks)
|
||||
|
||||
// Attachments (file upload/download)
|
||||
attachH := handlers.NewAttachmentHandler(stores, objStore, extQueue)
|
||||
|
||||
Reference in New Issue
Block a user