| 13 | |
| 14 | // ActivityPub messages received by an Actor's Inbox are sent into the queue. |
| 15 | export interface InboxMessageBody extends MessageBody { |
| 16 | activity: Activity |
| 17 | |
| 18 | // Send secrets as part of the message because it's too complicated |
| 19 | // to bind them to the consumer worker. |
| 20 | userKEK: string |
| 21 | vapidKeys: JWK |
| 22 | } |
| 23 | |
| 24 | // ActivityPub message delivery job are sent to the queue and the consumer does |
| 25 | // the actual delivery. |
nothing calls this directly
no outgoing calls
no test coverage detected