From fe9749ba4f9bfd375cc9ace3a692448a2aace569 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 12 Nov 2020 14:54:03 +1100 Subject: [PATCH] Add missing fixture for settings --- InvenTree/common/fixtures/settings.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 InvenTree/common/fixtures/settings.yaml diff --git a/InvenTree/common/fixtures/settings.yaml b/InvenTree/common/fixtures/settings.yaml new file mode 100644 index 0000000000..70ce23f312 --- /dev/null +++ b/InvenTree/common/fixtures/settings.yaml @@ -0,0 +1,13 @@ +# Sample settings objects + +- model: common.InvenTreeSetting + pk: 1 + fields: + key: INVENTREE_INSTANCE + value: "My very first InvenTree Instance" + +- model: common.InvenTreeSetting + pk: 2 + fields: + key: INVENTREE_COMPANY_NAME + value: "ACME Pty Ltd" \ No newline at end of file