mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-03 03:54:26 +02:00
14 lines
299 B
PHP
14 lines
299 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Tables;
|
|
|
|
use Icinga\Module\Director\Tables\IcingaCommandTable;
|
|
|
|
class IcingaCommandTemplateTable extends IcingaCommandTable
|
|
{
|
|
public function getBaseQuery()
|
|
{
|
|
return $this->getUnfilteredQuery()->where('c.object_type = ?', 'template');
|
|
}
|
|
}
|