Skip to content

Commit

Permalink
Additional commit for CO-1764
Browse files Browse the repository at this point in the history
  • Loading branch information
Benn Oshrin committed Jun 23, 2019
1 parent 77eebad commit ab4b5b7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/src/Controller/MatchgridsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@
use \App\Lib\Enum\PermissionEnum;

class MatchgridsController extends StandardController {
public $paginate = [
'order' => [
'Matchgrids.table_name' => 'asc'
]
];

/**
* Callback run prior to the request action.
*
Expand Down
6 changes: 6 additions & 0 deletions app/src/Controller/SystemsOfRecordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
namespace App\Controller;

class SystemsOfRecordController extends StandardController {
public $paginate = [
'order' => [
'SystemsOfRecord.label' => 'asc'
]
];

/**
* Authorization for this Controller, called by Auth component
* - postcondition: $vv_permissions set with calculated permissions for this Controller
Expand Down

0 comments on commit ab4b5b7

Please sign in to comment.