This commit is contained in:
Ad Schellevis 2018-08-24 18:05:38 +02:00
parent 619707a0c9
commit f0595c45cc
2 changed files with 2 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class AliasController extends ApiMutableModelControllerBase
{
return $this->searchBase(
"aliases.alias",
array('enabled', 'name', 'description'),
array('enabled', 'name', 'description', 'type'),
"description"
);
}

View File

@ -238,6 +238,7 @@
<th data-column-id="uuid" data-type="string" data-identifier="true" data-visible="false">{{ lang._('ID') }}</th>
<th data-column-id="enabled" data-width="6em" data-type="string" data-formatter="rowtoggle">{{ lang._('Enabled') }}</th>
<th data-column-id="name" data-type="string">{{ lang._('Name') }}</th>
<th data-column-id="type" data-type="string">{{ lang._('Type') }}</th>
<th data-column-id="description" data-type="string">{{ lang._('Description') }}</th>
<th data-column-id="commands" data-width="7em" data-formatter="commands" data-sortable="false">{{ lang._('Commands') }}</th>
</tr>