Mirror from bluesky-social/pds
0
fork

Configure Feed

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

pdsadmin/account fix curl command

+2 -2
+2 -2
pdsadmin/account.sh
··· 28 28 # account list 29 29 # 30 30 if [[ "${SUBCOMMAND}" == "list" ]]; then 31 - DIDS="$(curl_cmd \ 31 + DIDS="$(curl_cmd_get \ 32 32 "https://${PDS_HOSTNAME}/xrpc/com.atproto.sync.listRepos?limit=100" | jq --raw-output '.repos[].did' 33 33 )" 34 34 OUTPUT='[{"handle":"Handle","email":"Email","did":"DID"}' 35 35 for did in ${DIDS}; do 36 - ITEM="$(curl_cmd \ 36 + ITEM="$(curl_cmd_get \ 37 37 --user "admin:${PDS_ADMIN_PASSWORD}" \ 38 38 "https://${PDS_HOSTNAME}/xrpc/com.atproto.admin.getAccountInfo?did=${did}" 39 39 )"