We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a15a2c2 + 54d6d50 commit e516836Copy full SHA for e516836
third_party/fayp-jira-rest/Jira.php
@@ -89,11 +89,11 @@ public function testLogin()
89
}
90
91
/**
92
- *
+ * https://docs.atlassian.com/jira/REST/latest/#api/2/user-getUser
93
*/
94
public function getUser($username)
95
{
96
- $this->request->openConnect($this->host . 'user/search/?username=' . $username, 'GET');
+ $this->request->openConnect($this->host . 'user/?username=' . $username, 'GET');
97
$this->request->execute();
98
$user = json_decode($this->request->getResponseBody());
99
0 commit comments