Skip to content

Commit

Permalink
pkp#9552 order user groups by ID per default
Browse files Browse the repository at this point in the history
  • Loading branch information
bozana committed Jan 11, 2024
1 parent 0aa7f6b commit 60b5f0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/userGroup/Collector.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Collector implements CollectorInterface
public const ORDERBY_ROLE_ID = 'roleId';
public const ORDERBY_ID = 'id';

public ?string $orderBy = null;
public ?string $orderBy = self::ORDERBY_ID;

/** @var DAO */
public $dao;
Expand Down Expand Up @@ -62,7 +62,7 @@ class Collector implements CollectorInterface
public ?int $offset = null;

public UserUserGroupStatus $userUserGroupStatus = UserUserGroupStatus::STATUS_ACTIVE;

public ?bool $masthead = null;


Expand Down

0 comments on commit 60b5f0a

Please sign in to comment.