remove MaxScore from the sorting because it really doesn't make sense to sort by time then maxscore... time is going to be pretty much unique

This commit is contained in:
Isaac Connor 2017-12-04 21:50:29 -05:00
parent 26c9d1991c
commit f7a2db4e49
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class EventsController extends AppController {
// API
'limit' => '100',
'order' => array('StartTime', 'MaxScore'),
'order' => array('StartTime'),
'paramType' => 'querystring',
);
//if ( $this->request->params['GroupId'] ) {