| 3095 | } |
| 3096 | |
| 3097 | void IcingaDB::NotificationUserGroupsChangedHandler(const Notification::Ptr& notification, const Array::Ptr& oldValues, const Array::Ptr& newValues) { |
| 3098 | for (const IcingaDB::Ptr& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
| 3099 | rw->SendNotificationUserGroupsChanged(notification, oldValues, newValues); |
| 3100 | } |
| 3101 | } |
| 3102 | |
| 3103 | void IcingaDB::TimePeriodRangesChangedHandler(const TimePeriod::Ptr& timeperiod, const Dictionary::Ptr& oldValues, const Dictionary::Ptr& newValues) { |
| 3104 | for (const IcingaDB::Ptr& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
nothing calls this directly
no test coverage detected