From 24edc75e77a560e27a05acbf418293eca885779f Mon Sep 17 00:00:00 2001 From: Timo Pollmeier Date: Fri, 20 Dec 2019 12:05:06 +0100 Subject: [PATCH 1/2] Add setting "BPM Data" This setting with UUID 3ce2d136-bb52-448a-93f0-20069566f877 is used for storing data used by GSA to manage business process maps. --- src/manage_sql.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/manage_sql.c b/src/manage_sql.c index 026992295..5f6f6a4a6 100644 --- a/src/manage_sql.c +++ b/src/manage_sql.c @@ -59846,6 +59846,12 @@ modify_setting (const gchar *uuid, const gchar *name, /* Tickets */ else if (strcmp (uuid, "70b0626f-a835-478e-8194-e09f97887a15") == 0) setting_name = g_strdup ("Tickets Top Dashboard Configuration"); + + /* + * Client data for business process maps + */ + else if (strcmp (uuid, "3ce2d136-bb52-448a-93f0-20069566f877") == 0) + setting_name = g_strdup ("BPM Data"); } if (setting_name) From 255a09f60905a2bb7bed5740fa4bd26b6702c802 Mon Sep 17 00:00:00 2001 From: Timo Pollmeier Date: Fri, 20 Dec 2019 12:08:30 +0100 Subject: [PATCH 2/2] Add CHANGELOG entry for new "BPM Data" setting --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee11f2812..7abe9de82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -62,6 +62,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Add explicit columns for the NVT tags "summary", "insight", "detection", "impact" and "affected" [#719](https://github.com/greenbone/gvmd/pull/719) [#746](https://github.com/greenbone/gvmd/pull/746) - Add lean option to GET_REPORTS [#745](https://github.com/greenbone/gvmd/pull/745) - Add scanner relays and OSP sensor scanner type [#756](https://github.com/greenbone/gvmd/pull/756) [#759](https://github.com/greenbone/gvmd/pull/759) +- Add setting "BPM Data" [#914](https://github.com/greenbone/gvmd/pull/914) ### Changed - Always convert iCalendar strings to use UTC. [#777](https://github.com/greenbone/gvmd/pull/777)