this repo has no description
0
fork

Configure Feed

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

HACK: remove did doc from createSession to un-break it (temporarily)

+7 -8
+7 -8
api/atproto/servercreateSession.go
··· 7 7 import ( 8 8 "context" 9 9 10 - "github.com/bluesky-social/indigo/lex/util" 11 10 "github.com/bluesky-social/indigo/xrpc" 12 11 ) 13 12 ··· 20 19 21 20 // ServerCreateSession_Output is the output of a com.atproto.server.createSession call. 22 21 type ServerCreateSession_Output struct { 23 - AccessJwt string `json:"accessJwt" cborgen:"accessJwt"` 24 - Did string `json:"did" cborgen:"did"` 25 - DidDoc *util.LexiconTypeDecoder `json:"didDoc,omitempty" cborgen:"didDoc,omitempty"` 26 - Email *string `json:"email,omitempty" cborgen:"email,omitempty"` 27 - EmailConfirmed *bool `json:"emailConfirmed,omitempty" cborgen:"emailConfirmed,omitempty"` 28 - Handle string `json:"handle" cborgen:"handle"` 29 - RefreshJwt string `json:"refreshJwt" cborgen:"refreshJwt"` 22 + AccessJwt string `json:"accessJwt" cborgen:"accessJwt"` 23 + Did string `json:"did" cborgen:"did"` 24 + //DidDoc *util.LexiconTypeDecoder `json:"didDoc,omitempty" cborgen:"didDoc,omitempty"` 25 + Email *string `json:"email,omitempty" cborgen:"email,omitempty"` 26 + EmailConfirmed *bool `json:"emailConfirmed,omitempty" cborgen:"emailConfirmed,omitempty"` 27 + Handle string `json:"handle" cborgen:"handle"` 28 + RefreshJwt string `json:"refreshJwt" cborgen:"refreshJwt"` 30 29 } 31 30 32 31 // ServerCreateSession calls the XRPC method "com.atproto.server.createSession".