Show all subnets (scrollable), and sort, in sidebar Prefix search

This commit is contained in:
Oliver Gorwits
2014-02-22 19:11:27 +00:00
parent db24e4af27
commit 32f2e1d5fa
3 changed files with 7 additions and 7 deletions

View File

@@ -60,7 +60,7 @@ ajax '/ajax/data/subnet/typeahead' => require_login sub {
$q = "$q\%" if $q !~ m/\%/;
my $nets = schema('netdisco')->resultset('Subnet')->search(
{ 'me.net::text' => { '-ilike' => $q }},
{ columns => ['net'] } );
{ columns => ['net'], order_by => 'net' } );
content_type 'application/json';
to_json [map {$_->net} $nets->all];