()
| 87 | } |
| 88 | |
| 89 | export async function createIntegrationDiscord() { |
| 90 | const worker = await WorkerSingleton.getInstance(); |
| 91 | return await worker.addJob( |
| 92 | 'integration-discord', |
| 93 | {}, |
| 94 | { |
| 95 | maxAttempts: 1, |
| 96 | } |
| 97 | ); |
| 98 | } |
| 99 | |
| 100 | export async function createRemoveCommunityJob(accountId: string) { |
| 101 | const worker = await WorkerSingleton.getInstance(); |
nothing calls this directly
no test coverage detected