(domainId: string, name: string, uids: number[])
| 504 | } |
| 505 | |
| 506 | static updateGroup(domainId: string, name: string, uids: number[]) { |
| 507 | deleteUserCache(domainId); |
| 508 | return collGroup.updateOne({ domainId, name }, { $set: { uids } }, { upsert: true }); |
| 509 | } |
| 510 | } |
| 511 | |
| 512 | export async function apply() { |
no test coverage detected