diff --git a/third_party/fayp-jira-rest/Jira.php b/third_party/fayp-jira-rest/Jira.php index 8f7c03c221..24b6e46bde 100644 --- a/third_party/fayp-jira-rest/Jira.php +++ b/third_party/fayp-jira-rest/Jira.php @@ -89,11 +89,11 @@ public function testLogin() } /** - * + * https://docs.atlassian.com/jira/REST/latest/#api/2/user-getUser */ public function getUser($username) { - $this->request->openConnect($this->host . 'user/search/?username=' . $username, 'GET'); + $this->request->openConnect($this->host . 'user/?username=' . $username, 'GET'); $this->request->execute(); $user = json_decode($this->request->getResponseBody());