gitea源码

v86.go 299B

1234567891011121314151617
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_9
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. func AddHTTPMethodToWebhook(x *xorm.Engine) error {
  8. type Webhook struct {
  9. HTTPMethod string `xorm:"http_method DEFAULT 'POST'"`
  10. }
  11. return x.Sync(new(Webhook))
  12. }