This hook works when a new follow is being added.
Changelog
since 7.1.0 version
Parameters
$args (type: array) - the info about the follower and the user that is being followed
Usage
add_action("wpdiscuz_follow_added", function ($args) {
if (function_exists("my_custom_function")) {
my_custom_function();
}
}, 10);