this repo has no description
0
fork

Configure Feed

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

Skip JWT middleware for `com.atproto.server.createSession` RPC in PDS (#258)

Hey there - I'm trying to build out an E2E test suite based on the PDS
implementation included here.

It looks like `com.atproto.server.createSession` has the JWT Auth
middleware running on it, which prevents me calling this RPC in order to
log in. As far as I can tell, the handler has been implemented for this
RPC correctly (`pds/Server.handleComAtprotoServerCreateSession`) - it's
just not possible to call it.

authored by

Jaz and committed by
GitHub
0e32ab1f 3016bf14

+2
+2
pds/server.go
··· 309 309 return true 310 310 case "/xrpc/com.atproto.server.createAccount": 311 311 return true 312 + case "/xrpc/com.atproto.server.createSession": 313 + return true 312 314 case "/xrpc/com.atproto.server.describeServer": 313 315 return true 314 316 case "/xrpc/app.bsky.actor.getProfile":