Skip to content

Commit e516836

Browse files
authored
Fix Ticket 7623 getUser API CALL change in JIRA REST API
Fix Ticket 7623 getUser API CALL change in JIRA REST API
2 parents a15a2c2 + 54d6d50 commit e516836

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

third_party/fayp-jira-rest/Jira.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ public function testLogin()
8989
}
9090

9191
/**
92-
*
92+
* https://docs.atlassian.com/jira/REST/latest/#api/2/user-getUser
9393
*/
9494
public function getUser($username)
9595
{
96-
$this->request->openConnect($this->host . 'user/search/?username=' . $username, 'GET');
96+
$this->request->openConnect($this->host . 'user/?username=' . $username, 'GET');
9797
$this->request->execute();
9898
$user = json_decode($this->request->getResponseBody());
9999

0 commit comments

Comments
 (0)