File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,9 @@ export class BotImpl<TContextData> implements Bot<TContextData> {
134
134
. setOutboxDispatcher (
135
135
"/ap/actor/{identifier}/outbox" ,
136
136
this . dispatchOutbox . bind ( this ) ,
137
- ) ;
137
+ )
138
+ . setFirstCursor ( this . getOutboxFirstCursor . bind ( this ) )
139
+ . setCounter ( this . countOutbox . bind ( this ) ) ;
138
140
this . federation . setObjectDispatcher (
139
141
Create ,
140
142
"/ap/create/{id}" ,
@@ -228,6 +230,7 @@ export class BotImpl<TContextData> implements Bot<TContextData> {
228
230
sharedInbox : ctx . getInboxUri ( ) ,
229
231
} ) ,
230
232
followers : ctx . getFollowersUri ( identifier ) ,
233
+ outbox : ctx . getOutboxUri ( identifier ) ,
231
234
publicKey : keyPairs [ 0 ] . cryptographicKey ,
232
235
assertionMethods : keyPairs . map ( ( pair ) => pair . multikey ) ,
233
236
} ) ;
You can’t perform that action at this time.
0 commit comments