* Finish task#44806

This commit is contained in:
zenggang
2021-11-25 07:52:32 +00:00
parent e80d9acf37
commit 59605b34a6
3 changed files with 15 additions and 7 deletions
+3 -2
View File
@@ -492,11 +492,12 @@ class gitlab extends control
* @access public
* @return void
*/
public function browseUser($gitlabID)
public function browseUser($gitlabID, $orderBy = 'id_desc')
{
$this->view->title = $this->lang->gitlab->common . $this->lang->colon . $this->lang->gitlab->browseUser;
$this->view->gitlabID = $gitlabID;
$this->view->gitlabUserList = $this->gitlab->apiGetUsers($gitlabID);
$this->view->gitlabUserList = $this->gitlab->apiGetUsers($gitlabID, false, $orderBy);
$this->view->orderBy = $orderBy;
$this->display();
}