diff --git a/CHANGELOG.md b/CHANGELOG.md index 537bae137..fe2064048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] ### Added -- Added TLS certificates as a new resource type [#585](https://github.com/greenbone/gvmd/pull/585) [#663](https://github.com/greenbone/gvmd/pull/663) [#673](https://github.com/greenbone/gvmd/pull/673) [#695](https://github.com/greenbone/gvmd/pull/695) +- Added TLS certificates as a new resource type [#585](https://github.com/greenbone/gvmd/pull/585) [#663](https://github.com/greenbone/gvmd/pull/663) [#673](https://github.com/greenbone/gvmd/pull/673) [#695](https://github.com/greenbone/gvmd/pull/695) [#703](https://github.com/greenbone/gvmd/pull/703) - Update NVTs via OSP [#392](https://github.com/greenbone/gvmd/pull/392) [#609](https://github.com/greenbone/gvmd/pull/609) [#626](https://github.com/greenbone/gvmd/pull/626) - Handle addition of ID to NVT preferences. [#413](https://github.com/greenbone/gvmd/pull/413) - Add setting 'OMP Slave Check Period' [#491](https://github.com/greenbone/gvmd/pull/491) diff --git a/src/manage_sql.c b/src/manage_sql.c index 778567a21..12fdb2179 100644 --- a/src/manage_sql.c +++ b/src/manage_sql.c @@ -58896,6 +58896,10 @@ modify_setting (const gchar *uuid, const gchar *name, else if (strcmp (uuid, "d3f5f2de-a85b-43f2-a817-b127457cc8ba") == 0) setting_name = g_strdup ("Hosts Top Dashboard Configuration"); + /* TLS Certificate dashboard settings */ + else if (strcmp (uuid, "9b62bf16-bf90-11e9-ad97-28d24461215b") == 0) + setting_name = g_strdup ("TLS Certificates Top Dashboard Configuration"); + /* Operating Systems dashboard settings */ else if (strcmp (uuid, "e93b51ed-5881-40e0-bc4f-7d3268a36177") == 0) setting_name = g_strdup ("OSs Top Dashboard Configuration");