From 7769a1b2e30ab2e2c5cb766325cbdf2f55146f2b Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Thu, 24 Oct 2024 13:11:05 -0500 Subject: [PATCH 1/2] Update .cookiecutter.json Due to the way that Drift Manager uses the .cookiecutter.json file, we need to change the model_class_name to a valid model in this app to help us track drift in files that would be removed if the model_class_name=None. --- .cookiecutter.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index 020ae61d..2553384a 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -14,7 +14,7 @@ "max_nautobot_version": "2.9999", "camel_name": "NautobotSSOTApp", "project_short_description": "Nautobot Single Source of Truth", - "model_class_name": "None", + "model_class_name": "Sync", "open_source_license": "Apache-2.0", "docs_base_url": "https://docs.nautobot.com", "docs_app_url": "https://docs.nautobot.com/projects/ssot/en/latest", From fc7af25677bd325d3bf7ef53ffe9ef44ef7ce9f8 Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Thu, 24 Oct 2024 13:12:30 -0500 Subject: [PATCH 2/2] Create Change Fragment --- changes/587.housekeeping | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/587.housekeeping diff --git a/changes/587.housekeeping b/changes/587.housekeeping new file mode 100644 index 00000000..eb854f12 --- /dev/null +++ b/changes/587.housekeeping @@ -0,0 +1 @@ +Changed model_class_name in .cookiecutter.json to a valid model to help with drift management.