Allow to sort contact groups by alias name

This commit is contained in:
Thomas Gelf 2014-02-21 10:27:15 +00:00
parent 55df4831d7
commit 8ef6cc79cc
1 changed files with 4 additions and 1 deletions

View File

@ -33,7 +33,10 @@ class Contactgroup extends DataView
{
return array(
'contactgroup_name' => array(
'order' => self::SORT_DESC
'order' => self::SORT_ASC
),
'contactgroup_alias' => array(
'order' => self::SORT_ASC
)
);
}