({ accountId }: { accountId: string })
| 568 | } |
| 569 | |
| 570 | static async setCursorNull({ accountId }: { accountId: string }) { |
| 571 | await prisma.channels.updateMany({ |
| 572 | where: { accountId }, |
| 573 | data: { externalPageCursor: null }, |
| 574 | }); |
| 575 | } |
| 576 | |
| 577 | static async isChannelUsable({ |
| 578 | channelId, |
no outgoing calls
no test coverage detected