Our Personal Data Server from scratch!

fix(proxy): protect more com.atproto.repo methods

Anisota seems to be using these in a way which attempts to proxy them -
unfortunately they aren't actually meant to be proxied and fail... the
list records method outright returns XRPCNotSupported and the get record
method gives RecordNotFound

...we just, like, shouldn't be proxying it. Avoiding proxying completely
fixes this issue...

a.starrysky.fyi 9c67bfb2 1ff22c3d

verified
+2
+2
crates/tranquil-pds/src/api/proxy.rs
··· 40 40 "com.atproto.repo.applyWrites", 41 41 "com.atproto.repo.createRecord", 42 42 "com.atproto.repo.deleteRecord", 43 + "com.atproto.repo.getRecord", 43 44 "com.atproto.repo.importRepo", 45 + "com.atproto.repo.listRecords", 44 46 "com.atproto.repo.putRecord", 45 47 "com.atproto.repo.uploadBlob", 46 48 "com.atproto.server.activateAccount",