All accounts are able to perform follow action on another account in order to:
- stay up to date with posts by the author you are interested in
- isolate posts by authors that the user is not interested in
- put user on blacklist and mark posts created by him
It is also possible to follow other account blacklists and mutes. So if user want to have the same mutes or/and blacklists as another user, there is such possibility.
#### Follow Actions
There are 16 follow actions:
1.**blog** - user follows another user
2.**follow** - the same as **blog**
3.**ignore** - user mutes another user, what results with hiding posts created by muted user, in some cases these posts can be grayed.
4.**blacklist** - marks user as blacklisted and his posts will be marked with 'my blacklist'
5.**follow_blacklist** - user follows another user's list of blacklisted users and will see 'blacklisted by <user>' if someone post is blacklisted by one of user who's blacklist is followed
6.**unblacklist** - removes user from own blacklist
7.**unfollow_blacklist** - stop following another user's list of blacklisted users.
8.**follow_muted** - user follows another user's list of muted users and posts created by these users will be hidden or grayed like be muted by user.
9.**unfollow_muted** - user stops follow another user's list of muted users.
10.**reset_blacklist** - Removes all users from user's list of blacklisted users.
11.**reset_following_list** - Removes all users from user's list of following users.
12.**reset_muted_list** - Removes all users from user's list of muted users.
13.**reset_follow_blacklist** - Removes all users from user's list of following another users blacklisted users.
14.**reset_follow_muted_list** - Removes all users from user's list of following another users muted users.
15.**reset_all_lists** - User will not follow, ignore or blacklist anyone, like new created user.
#### Follow Operation
To create follow operation, you need to user `custom_json_operation`. Field `id` have to be set to `follow`, in`required_posting_auths` you need to put `follower` name.
Field `json` have to be a list, first element must be a string value - `follow` and second has to be a json, which has to contains 3 keys:
-`follower` - user on which action will be performed.
-`following` - user on which another user will perform follow operation (when using one of resets action, this field is ignored, can be set to null or whatever). This field can be a string or a list. In case of list, specific follow action will be performed on every user from list.
-`what` - has to be a list and it has to contain one of follow actions. In case when we want to unfollow ir cancel ignore on specific user, list should be empty or we can action to empty string - `""` (be aware, removing user from blacklist needs `unblacklist` action)