You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pipeline.go 285 B

2 years ago
123456789101112131415
  1. package notify
  2. import (
  3. "net/http"
  4. "code.gitea.io/gitea/models"
  5. "code.gitea.io/gitea/modules/context"
  6. api "code.gitea.io/gitea/modules/structs"
  7. )
  8. func PipelineNotify(ctx *context.APIContext, form api.PipelineNotification) {
  9. ctx.JSON(http.StatusOK, models.BaseOKMessageApi)
  10. }