diff options
| author | 2021-07-05 13:23:03 +0200 | |
|---|---|---|
| committer | 2021-07-05 13:23:03 +0200 | |
| commit | d389e7b150df6ecd215c7b661b294ea153ad0103 (patch) | |
| tree | 8739e3103cb5130875d903cc7fc72fd9db3b8434 /internal/util | |
| parent | Fix 404 contact (#74) (diff) | |
| download | gotosocial-d389e7b150df6ecd215c7b661b294ea153ad0103.tar.xz | |
Domain block (#76)
* start work on admin domain blocking
* move stuff around + further work on domain blocks
* move + restructure processor
* prep work for deleting account
* tidy
* go fmt
* formatting
* domain blocking more work
* check domain blocks way earlier on
* progress on delete account
* delete more stuff when an account is gone
* and more...
* domain blocky block block
* get individual domain block, delete a block
Diffstat (limited to 'internal/util')
| -rw-r--r-- | internal/util/uri.go | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/internal/util/uri.go b/internal/util/uri.go index 2bfdd6c40..5eb291628 100644 --- a/internal/util/uri.go +++ b/internal/util/uri.go @@ -66,8 +66,8 @@ const (  	// APRequestingActorIRI can be used to set and retrieve the actor of an incoming federation request.  	// This will usually be the owner of whatever activity is being posted.  	APRequestingActorIRI APContextKey = "requestingActorIRI" -	// APRequestingPublicKeyID can be used to set and retrieve the public key ID of an incoming federation request. -	APRequestingPublicKeyID APContextKey = "requestingPublicKeyID" +	// APRequestingPublicKeyVerifier can be used to set and retrieve the public key verifier of an incoming federation request. +	APRequestingPublicKeyVerifier APContextKey = "requestingPublicKeyVerifier"  	// APFromFederatorChanKey can be used to pass a pointer to the fromFederator channel into the federator for use in callbacks.  	APFromFederatorChanKey APContextKey = "fromFederatorChan"  ) | 
