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

pull/380/head
zhengkunwang223 2023-03-23 12:14:31 +08:00 committed by GitHub
parent a56e5a8abe
commit 5d1fced8e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ func (u *GroupService) Delete(id uint) error {
} }
switch group.Type { switch group.Type {
case "website": case "website":
websites, _ := websiteRepo.GetBy(commonRepo.WithByGroupID(id)) websites, _ := websiteRepo.GetBy(websiteRepo.WithGroupID(id))
if len(websites) > 0 { if len(websites) > 0 {
return buserr.New(constant.ErrGroupIsUsed) return buserr.New(constant.ErrGroupIsUsed)
} }