Search branches (#27055)
Resolve #25233 <img width="1315" alt="图片" src="3ba59b58
-471a-4e1b-985c-87edac2268c0"> <img width="1297" alt="图片" src="b6caa12f
-323b-4f70-9c44-ef91cb71a26c">
This commit is contained in:
parent
dcf4b9e314
commit
47b878858a
5 changed files with 24 additions and 4 deletions
|
@ -70,6 +70,7 @@ type FindBranchOptions struct {
|
|||
ExcludeBranchNames []string
|
||||
IsDeletedBranch util.OptionalBool
|
||||
OrderBy string
|
||||
Keyword string
|
||||
}
|
||||
|
||||
func (opts *FindBranchOptions) Cond() builder.Cond {
|
||||
|
@ -84,6 +85,9 @@ func (opts *FindBranchOptions) Cond() builder.Cond {
|
|||
if !opts.IsDeletedBranch.IsNone() {
|
||||
cond = cond.And(builder.Eq{"is_deleted": opts.IsDeletedBranch.IsTrue()})
|
||||
}
|
||||
if opts.Keyword != "" {
|
||||
cond = cond.And(builder.Like{"name", opts.Keyword})
|
||||
}
|
||||
return cond
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue