#191: do not ask for summary, in the list of all tickets

This commit is contained in:
Davide Alberani 2017-12-02 17:53:49 +01:00
parent c6d84acbc6
commit d1641d3023

View file

@ -78,7 +78,11 @@ eventManControllers.controller('EventsListCtrl', ['$scope', 'Event', 'EventTicke
$scope.filteredLength = 0;
$scope.maxPaginationSize = 10;
$scope.events = Event.all({_summary: true}, function(events) {
var query_params = {};
if (!$state.is('tickets')) {
query_params['_summary'] = true
}
$scope.events = Event.all(query_params, function(events) {
if (events && $state.is('tickets')) {
angular.forEach(events, function(evt, idx) {
var evt_tickets = (evt.tickets || []).slice(0);