summaryrefslogtreecommitdiff
path: root/app/Controller/UserHelper.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/UserHelper.php')
-rw-r--r--app/Controller/UserHelper.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/Controller/UserHelper.php b/app/Controller/UserHelper.php
index f164d0a6..041ed2c8 100644
--- a/app/Controller/UserHelper.php
+++ b/app/Controller/UserHelper.php
@@ -21,4 +21,17 @@ class UserHelper extends Base
$users = $this->userFilterAutoCompleteFormatter->create($search)->filterByUsernameOrByName()->format();
$this->response->json($users);
}
+
+ /**
+ * User mention autocompletion (Ajax)
+ *
+ * @access public
+ */
+ public function mention()
+ {
+ $project_id = $this->request->getStringParam('project_id');
+ $query = $this->request->getStringParam('q');
+ $users = $this->projectPermission->findUsernames($project_id, $query);
+ $this->response->json($users);
+ }
}