mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
ea707f5a77
* Add branch protection option to block merge on requested changes. * Add migration step * Fix check to correct negation * Apply suggestions from code review Language improvement. Co-Authored-By: John Olheiser <42128690+jolheiser@users.noreply.github.com> * Copyright year. Co-authored-by: John Olheiser <42128690+jolheiser@users.noreply.github.com> Co-authored-by: Lauris BH <lauris@nix.lv>
18 lines
403 B
Go
18 lines
403 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package migrations
|
|
|
|
import (
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func addBlockOnRejectedReviews(x *xorm.Engine) error {
|
|
type ProtectedBranch struct {
|
|
BlockOnRejectedReviews bool `xorm:"NOT NULL DEFAULT false"`
|
|
}
|
|
|
|
return x.Sync2(new(ProtectedBranch))
|
|
}
|