New deleteproject handler, WIP

This commit is contained in:
borean 2024-03-20 11:43:47 +01:00
parent c01dd21b0a
commit bb93cef1d3
2 changed files with 6 additions and 0 deletions

View file

@ -226,3 +226,8 @@ func (gs *GState) IsProjectManagerHandler(c *fiber.Ctx) error {
// Return the result as JSON
return c.JSON(map[string]bool{"isProjectManager": isManager})
}
func (gs *GState) CreateTask(c *fiber.Ctx) error {
return nil
}