Matthias Pfefferle
Matthias Pfefferle
What about working with the post state (pending, approved, ...) instead of a new custom post type? I would also love to see the model and controller of the request...
Or maybe we could simply work with metas, like `activitypub_pending_user_id` and rename it to `activitypub_user_id` when approved?
Because we had a lot of discussions and problems with taxonomies on WordPress.com I would avoid them for now. My problem is with the sub-type is, that it adds a...
> Here we would in both cases have to save the id of the follow object somewhere related. Any ideas? Thats why I am struggling for so long :/ My...
I started with storing all followers in one big user meta! I decided to have everything in the custom post and the post meta, to easily filter, sort and page...
> This is the point were this solution seems not to be enough. - `Mastodon1` tries to follow `Blog1` (manual approve enabled). The Follower `Mastodon1` will be created with the...
It seems hard to explain it in text. It should work without helper tables, because I simply replaced the Follow_Request object (you introduced) with a `activitypub_pending_user_id` post meta for the...
Ah, because of the follow (activity) id!?!
One more idea: why not use that to start an inbox/outbox custom post type and use that to store and process the request?!?
> > One more idea: why not use that to start an inbox/outbox custom post type and use that to store and process the request?!? > At the moment I...