feat: 网站分组删除校验 (#377)

This commit is contained in:
zhengkunwang223
2023-03-23 04:14:31 +00:00
committed by GitHub
parent a56e5a8abe
commit 5d1fced8e9
+1 -1
View File
@@ -58,7 +58,7 @@ func (u *GroupService) Delete(id uint) error {
}
switch group.Type {
case "website":
websites, _ := websiteRepo.GetBy(commonRepo.WithByGroupID(id))
websites, _ := websiteRepo.GetBy(websiteRepo.WithGroupID(id))
if len(websites) > 0 {
return buserr.New(constant.ErrGroupIsUsed)
}