mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-18 08:15:16 +01:00
Merge pull request #9799 from wy65701436/fix-sort-immu-rule
Fix immutable rule sequence to list API
This commit is contained in:
commit
9929780904
@ -5,6 +5,7 @@ import (
|
||||
"github.com/goharbor/harbor/src/pkg/immutabletag/dao"
|
||||
dao_model "github.com/goharbor/harbor/src/pkg/immutabletag/dao/model"
|
||||
"github.com/goharbor/harbor/src/pkg/immutabletag/model"
|
||||
"sort"
|
||||
)
|
||||
|
||||
var (
|
||||
@ -84,6 +85,9 @@ func (drm *defaultRuleManager) QueryImmutableRuleByProjectID(projectID int64) ([
|
||||
rule.Disabled = daoRule.Disabled
|
||||
rules = append(rules, rule)
|
||||
}
|
||||
sort.Slice(rules, func(i, j int) bool {
|
||||
return rules[i].ID < rules[j].ID
|
||||
})
|
||||
return rules, nil
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user