This action runs when the group manager resets the user password.
do_action('profilegrid_group_manager_resets_password',$user_id);
Simple example
function profilegrid_action_group_manager_resets_password($user_id)
{
//do something with the user id when a group manager resets the user password.
}
add_action( 'profilegrid_group_manager_resets_password', 'profilegrid_action_group_manager_resets_password');

