From 059187225755c94b7907f63dec439ff9d1736f94 Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Mon, 21 Oct 2024 15:24:36 -0500 Subject: [PATCH 1/3] 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 BGP models 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 3a7398d1..7f3703f7 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -14,7 +14,7 @@ "max_nautobot_version": "2.9999", "camel_name": "NautobotChatOpsApp", "project_short_description": "Nautobot ChatOps App", - "model_class_name": "None", + "model_class_name": "CommandLog", "open_source_license": "Apache-2.0", "docs_base_url": "https://docs.nautobot.com", "docs_app_url": "https://docs.nautobot.com/projects/chatops/en/latest", From 733ec13f36e0712b9eba6e70f7133e8469e67c68 Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Mon, 21 Oct 2024 15:26:00 -0500 Subject: [PATCH 2/3] Create 339.housekeeping --- changes/339.housekeeping | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/339.housekeeping diff --git a/changes/339.housekeeping b/changes/339.housekeeping new file mode 100644 index 00000000..12068902 --- /dev/null +++ b/changes/339.housekeeping @@ -0,0 +1 @@ +Change model_class_name in .cookiecutter.json to a valid model. From 315cb79990ddadc1c2b17664f2c218d64499535d Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Tue, 22 Oct 2024 13:47:36 -0500 Subject: [PATCH 3/3] Update changes/339.housekeeping --- changes/339.housekeeping | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changes/339.housekeeping b/changes/339.housekeeping index 12068902..eb854f12 100644 --- a/changes/339.housekeeping +++ b/changes/339.housekeeping @@ -1 +1 @@ -Change model_class_name in .cookiecutter.json to a valid model. +Changed model_class_name in .cookiecutter.json to a valid model to help with drift management.