| 283 | } |
| 284 | |
| 285 | void Checkable::NotifyDowntimeInternal(const Downtime::Ptr& downtime) |
| 286 | { |
| 287 | Checkable::Ptr checkable = downtime->GetCheckable(); |
| 288 | |
| 289 | if (!checkable->IsPaused()) |
| 290 | OnNotificationsRequested(checkable, NotificationDowntimeStart, checkable->GetLastCheckResult(), downtime->GetAuthor(), downtime->GetComment(), nullptr); |
| 291 | } |
| 292 | |
| 293 | void Checkable::NotifyDowntimeEnd(const Downtime::Ptr& downtime) |
| 294 | { |
nothing calls this directly
no test coverage detected