Skip to content

Commit

Permalink
fix: incorrect route of delete all installing tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeuoly committed Nov 25, 2024
1 parent dd5325b commit d341ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/server/http_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ func (app *App) pluginManagementGroup(group *gin.RouterGroup, config *app.Config
group.POST("/install/identifiers", controllers.InstallPluginFromIdentifiers(config))
group.POST("/install/upgrade", controllers.UpgradePlugin(config))
group.GET("/install/tasks/:id", controllers.FetchPluginInstallationTask)
group.POST("/install/tasks/delete_all", controllers.DeleteAllPluginInstallationTasks)
group.POST("/install/tasks/:id/delete", controllers.DeletePluginInstallationTask)
group.POST("/install/tasks/:id/delete_all", controllers.DeleteAllPluginInstallationTasks)
group.POST("/install/tasks/:id/delete/*identifier", controllers.DeletePluginInstallationItemFromTask)
group.GET("/install/tasks", controllers.FetchPluginInstallationTasks)
group.GET("/fetch/manifest", controllers.FetchPluginManifest)
Expand Down

0 comments on commit d341ff9

Please sign in to comment.