Egregoros

Signal feed

Timeline

Post

Remote status

Context

7

Replies

27

@grips do you have the privacy shit set so people off your instance can't be read unless you're logged in?

pleroma=# select data->>'id' as post_id, case when data->'to' ? 'https://www.w3.org/ns/activitystreams#public' then 'public' when data->'cc' ? 'https://www.w3.org/ns/activitystreams#public' then 'unlisted' when (data->>'to') like '%/followers%' then 'followers-only (private)' else 'direct message (dm)' end as visibility_scope from objects where data->>'id' = 'https://cawfee.club/objects/1458ede0-734b-4542-8fba-e006d61d63d7';

                             post_id                              |  visibility_scope

------------------------------------------------------------------+---------------------

 https://cawfee.club/objects/1458ede0-734b-4542-8fba-e0... | direct message (dm)

(1 row)