Skip to content

Commit

Permalink
Merge pull request #531 from nopg/u/nopg/530-infoblox-config-saved-view
Browse files Browse the repository at this point in the history
Disable saved view for SSOTInfobloxConfig
  • Loading branch information
jdrew82 authored Sep 5, 2024
2 parents 74553e5 + 1cf0e7a commit e8a7ea2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions changes/530.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed Infoblox Configuration List Bug when on Nautobot 2.3 by disabling SSOTInfobloxConfig from being a saved view.
2 changes: 2 additions & 0 deletions nautobot_ssot/integrations/infoblox/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ class SSOTInfobloxConfig(PrimaryModel): # pylint: disable=too-many-ancestors
"""SSOT Infoblox Configuration model."""

name = models.CharField(max_length=CHARFIELD_MAX_LENGTH, unique=True)
# TODO: Claify how saved views can be done for child apps
is_saved_view_model = False
description = models.CharField(
max_length=CHARFIELD_MAX_LENGTH,
blank=True,
Expand Down

0 comments on commit e8a7ea2

Please sign in to comment.