mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-23 10:45:16 +00:00
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8422 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
16 lines
299 B
Go
16 lines
299 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_9
|
|
|
|
import (
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func AddHTTPMethodToWebhook(x *xorm.Engine) error {
|
|
type Webhook struct {
|
|
HTTPMethod string `xorm:"http_method DEFAULT 'POST'"`
|
|
}
|
|
|
|
return x.Sync(new(Webhook))
|
|
}
|