Add hasBasketSupport for TimePeriods (#2543)

This adds the missing "hasBasketSupport" for TimePeriodController which
allows to add the TimePeriod to specific baskets.
This commit is contained in:
Eric Lippmann 2024-11-07 15:24:45 +01:00 committed by GitHub
commit 5daa3a85ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,4 +30,9 @@ class TimeperiodController extends ObjectController
$this->content()->add($form->handleRequest());
IcingaTimePeriodRangeTable::load($object)->renderTo($this);
}
protected function hasBasketSupport()
{
return true;
}
}