| 3113 | } |
| 3114 | |
| 3115 | void IcingaDB::TimePeriodExcludesChangedHandler(const TimePeriod::Ptr& timeperiod, const Array::Ptr& oldValues, const Array::Ptr& newValues) { |
| 3116 | for (const IcingaDB::Ptr& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
| 3117 | rw->SendTimePeriodExcludesChanged(timeperiod, oldValues, newValues); |
| 3118 | } |
| 3119 | } |
| 3120 | |
| 3121 | void IcingaDB::UserGroupsChangedHandler(const User::Ptr& user, const Array::Ptr& oldValues, const Array::Ptr& newValues) { |
| 3122 | for (const IcingaDB::Ptr& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
nothing calls this directly
no test coverage detected