icingaweb2-module-director/application/tables/IcingaUserTemplateTable.php
2015-12-02 04:07:13 +01:00

14 lines
290 B
PHP

<?php
namespace Icinga\Module\Director\Tables;
use Icinga\Module\Director\Tables\IcingaUserTable;
class IcingaUserTemplateTable extends IcingaUserTable
{
public function getBaseQuery()
{
return $this->getUnfilteredQuery()->where('u.object_type = ?', 'template');
}
}