qa: Can export to gitlab

This commit is contained in:
nemunaire 2023-11-25 13:43:41 +01:00
parent 0a22d09947
commit 60a34d3ced
13 changed files with 463 additions and 3 deletions

View file

@ -27,6 +27,8 @@ func declareQARoutes(router *gin.RouterGroup) {
qaRoutes.GET("comments", getQAComments)
qaRoutes.POST("comments", createQAComment)
declareGitlabExportRoutes(qaRoutes)
commentsRoutes := qaRoutes.Group("comments/:cid")
commentsRoutes.Use(qaCommentHandler)
commentsRoutes.DELETE("", deleteQAComment)