Sort constituents by job name

This commit is contained in:
Eelco Dolstra
2013-08-15 03:28:21 +02:00
parent 06c74085b5
commit 72a0fa6ec5
2 changed files with 6 additions and 3 deletions

View File

@ -118,6 +118,9 @@ sub build_GET {
]
})
);
# If this is an aggregate build, get its constituents.
$c->stash->{constituents} = [$c->stash->{build}->constituents_->search({}, {order_by => ["job"]})];
}