From 87f0b19dc0147e5329c61f58a1c62d3816c5f5b8 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 18 Mar 2020 14:43:19 -0400 Subject: [PATCH] Closes #4380: Enable webhooks for rack reservations --- docs/release-notes/version-2.7.md | 1 + netbox/dcim/models/__init__.py | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/release-notes/version-2.7.md b/docs/release-notes/version-2.7.md index 7395751bb..4a1df8146 100644 --- a/docs/release-notes/version-2.7.md +++ b/docs/release-notes/version-2.7.md @@ -7,6 +7,7 @@ * [#738](https://github.com/netbox-community/netbox/issues/738) - Add ability to automatically check for new releases (must be enabled by setting `RELEASE_CHECK_URL`) * [#4309](https://github.com/netbox-community/netbox/issues/4309) - Add descriptive tooltip to custom fields on object views * [#4369](https://github.com/netbox-community/netbox/issues/4369) - Add a dedicated view for rack reservations +* [#4380](https://github.com/netbox-community/netbox/issues/4380) - Enable webhooks for rack reservations ### Bug Fixes diff --git a/netbox/dcim/models/__init__.py b/netbox/dcim/models/__init__.py index 63c3044c1..d525275fe 100644 --- a/netbox/dcim/models/__init__.py +++ b/netbox/dcim/models/__init__.py @@ -739,6 +739,7 @@ class Rack(ChangeLoggedModel, CustomFieldModel): return 0 +@extras_features('webhooks') class RackReservation(ChangeLoggedModel): """ One or more reserved units within a Rack.