this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: minor improvement for docs

Signed-off-by: claudecodering <claudecoder@outlook.com>

+5 -5
+1 -1
README.md
··· 25 25 | ------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 26 26 | `api/atproto`: generated types for `com.atproto.*` Lexicons | [![PkgGoDev](https://pkg.go.dev/badge/mod/github.com/bluesky-social/indigo/api/atproto)](https://pkg.go.dev/mod/github.com/bluesky-social/indigo/api/atproto) | 27 27 | `api/bsky`: generated types for `app.bsky.*` Lexicons | [![PkgGoDev](https://pkg.go.dev/badge/mod/github.com/bluesky-social/indigo/api/bsky)](https://pkg.go.dev/mod/github.com/bluesky-social/indigo/api/bsky) | 28 - | `atproto/atcrypto`: crytographic signing and key serialization | [![PkgGoDev](https://pkg.go.dev/badge/mod/github.com/bluesky-social/indigo/atproto/atcrypto)](https://pkg.go.dev/mod/github.com/bluesky-social/indigo/atproto/atcrypto) | 28 + | `atproto/atcrypto`: cryptographic signing and key serialization | [![PkgGoDev](https://pkg.go.dev/badge/mod/github.com/bluesky-social/indigo/atproto/atcrypto)](https://pkg.go.dev/mod/github.com/bluesky-social/indigo/atproto/atcrypto) | 29 29 | `atproto/identity`: DID and handle resolution | [![PkgGoDev](https://pkg.go.dev/badge/mod/github.com/bluesky-social/indigo/atproto/identity)](https://pkg.go.dev/mod/github.com/bluesky-social/indigo/atproto/identity) | 30 30 | `atproto/syntax`: string types and parsers for identifiers | [![PkgGoDev](https://pkg.go.dev/badge/mod/github.com/bluesky-social/indigo/atproto/syntax)](https://pkg.go.dev/mod/github.com/bluesky-social/indigo/atproto/syntax) | 31 31 | `atproto/lexicon`: schema validation of data | [![PkgGoDev](https://pkg.go.dev/badge/mod/github.com/bluesky-social/indigo/atproto/lexicon)](https://pkg.go.dev/mod/github.com/bluesky-social/indigo/atproto/lexicon) |
+1 -1
atproto/atcrypto/keys.go
··· 69 69 JWK() (*JWK, error) 70 70 } 71 71 72 - var ErrInvalidSignature = errors.New("crytographic signature invalid") 72 + var ErrInvalidSignature = errors.New("cryptographic signature invalid") 73 73 74 74 /* 75 75 // quick code to verify varint byte conversion (https://play.golang.com/):
+1 -1
atproto/auth/oauth/doc.go
··· 140 140 141 141 In the traditional web app backend scenario, a single account (DID) might have multiple active sessions. For example, a user might log in from a browser on their laptop and on a mobile device at the same time. The user must go through the entire flow on each device (or browser) to authenticate the user. To prevent a new session from "clobbering" existing sessions (including tokens), this package supports multiple concurrent sessions per account, distinguished by a session ID. The random 'state' token from the auth flow is re-used by default. 142 142 143 - In other scenarious, multiple sessions are not needed or desirable. For example, an integration backend, or tool with very short session lifetimes. In these scenarios, implementations of the [ClientAuthStore] interface could ignore the session ID. Or the [ClientApp] could be configured with an ephemeral [ClientAuthStore] (to support auth flows), and managed the session data returned by [ClientApp.ProcessCallback] using separate session storage logic. 143 + In other scenarios, multiple sessions are not needed or desirable. For example, an integration backend, or tool with very short session lifetimes. In these scenarios, implementations of the [ClientAuthStore] interface could ignore the session ID. Or the [ClientApp] could be configured with an ephemeral [ClientAuthStore] (to support auth flows), and managed the session data returned by [ClientApp.ProcessCallback] using separate session storage logic. 144 144 */ 145 145 package oauth
+1 -1
atproto/identity/identity.go
··· 24 24 Keys map[string]VerificationMethod 25 25 } 26 26 27 - // Sub-field type for [Identity], representing a crytographic public key declared as a "verificationMethod" in the DID document. 27 + // Sub-field type for [Identity], representing a cryptographic public key declared as a "verificationMethod" in the DID document. 28 28 type VerificationMethod struct { 29 29 Type string 30 30 PublicKeyMultibase string
+1 -1
cmd/relay/relay/slurper.go
··· 504 504 return err 505 505 } 506 506 507 - // gets a snapshot of current subsription hostnames 507 + // gets a snapshot of current subscription hostnames 508 508 func (s *Slurper) GetActiveSubHostnames() []string { 509 509 s.subsLk.Lock() 510 510 defer s.subsLk.Unlock()