Authorized fetch, anyone?
This commit is contained in:
parent
92d543dbbd
commit
58d4e3b8a4
1 changed files with 5 additions and 0 deletions
|
@ -27,6 +27,7 @@ export class DotinoVeloce {
|
|||
.setActorDispatcher("/users/{identifier}", this.#actorHandler.bind(this))
|
||||
.setKeyPairsDispatcher(this.#actorKeys.bind(this))
|
||||
.mapHandle(this.#actorMapper.bind(this))
|
||||
.authorize(this.#authorizationHandler.bind(this))
|
||||
|
||||
this.federation
|
||||
.setInboxListeners("/inbox/{identifier}", "/inbox")
|
||||
|
@ -248,6 +249,10 @@ export class DotinoVeloce {
|
|||
return result
|
||||
}
|
||||
|
||||
async #authorizationHandler(_ctx: Context<ContextData>, _handle: string, _signedKey: unknown, _signedKeyOwner: unknown): Promise<boolean> {
|
||||
return true
|
||||
}
|
||||
|
||||
async #followHandler(ctx: Context<ContextData>, follow: Follow) {
|
||||
l.info`Handling follow request: ${follow}`
|
||||
|
||||
|
|
Loading…
Reference in a new issue