(domainId: string, name: string)
| 499 | } |
| 500 | |
| 501 | static delGroup(domainId: string, name: string) { |
| 502 | deleteUserCache(domainId); |
| 503 | return collGroup.deleteOne({ domainId, name }); |
| 504 | } |
| 505 | |
| 506 | static updateGroup(domainId: string, name: string, uids: number[]) { |
| 507 | deleteUserCache(domainId); |
no test coverage detected