Comment mentions

Since 2017.1, it is possible to use @mentions in review comments. By default, @mentions will auto-complete to all users in the system, but it is possible to fine tune this behaviour.

You configure the behaviour of @mentions in comments with the mentions configuration block in the SWARM_ROOT/data/config.php file. Here is an example:

<?php
'mentions' => array(
'mode' => 'global',
'usersBlacklist' => array('super', 'swarm-admin'),
),