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:
parent
26c9d1991c
commit
f7a2db4e49
|
@ -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'] ) {
|
||||
|
|
Loading…
Reference in New Issue