Skip to content

Commit

Permalink
Merge pull request #703 from mattmundell/tls-setting
Browse files Browse the repository at this point in the history
Add TLS Certificate dashboard setting
  • Loading branch information
timopollmeier authored Aug 16, 2019
2 parents 7f3ce72 + 4fa90b5 commit b9a661a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions src/manage_sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit b9a661a

Please sign in to comment.