From 757ed3e921e45cc742f6cb938373db0893f25ec4 Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Tue, 22 Oct 2024 14:07:39 -0500 Subject: [PATCH] Update .cookiecutter.json (#339) * 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. * Create 339.housekeeping * Update changes/339.housekeeping --- .cookiecutter.json | 2 +- changes/339.housekeeping | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changes/339.housekeeping 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", diff --git a/changes/339.housekeeping b/changes/339.housekeeping new file mode 100644 index 00000000..eb854f12 --- /dev/null +++ b/changes/339.housekeeping @@ -0,0 +1 @@ +Changed model_class_name in .cookiecutter.json to a valid model to help with drift management.