Skip to content

Add setting "BPM Dashboard Configuration" #764

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Added
- Add setting "BPM Dashboard Configuration" [#764](https://github.com/greenbone/gvmd/pull/764)

### Changed

### Fixed

### Removed

[Unreleased]: https://github.com/greenbone/gvmd/compare/gvmd-9.0...master

## [9.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) [#674](https://github.com/greenbone/gvmd/pull/674) [#689](https://github.com/greenbone/gvmd/pull/689) [#695](https://github.com/greenbone/gvmd/pull/695) [#703](https://github.com/greenbone/gvmd/pull/703) [#728](https://github.com/greenbone/gvmd/pull/728) [#732](https://github.com/greenbone/gvmd/pull/732) [#750](https://github.com/greenbone/gvmd/pull/750) [#752](https://github.com/greenbone/gvmd/pull/752)
- 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) [#753](https://github.com/greenbone/gvmd/pull/753)
Expand Down Expand Up @@ -78,8 +91,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Remove helper functions and other code for handling OTP [#705](https://github.com/greenbone/gvmd/pull/705) [#709](https://github.com/greenbone/gvmd/pull/709) [#713](https://github.com/greenbone/gvmd/pull/713) [#735](https://github.com/greenbone/gvmd/pull/735) [#748](https://github.com/greenbone/gvmd/pull/748) [#749](https://github.com/greenbone/gvmd/pull/749)
- Remove stray prototype nvt_iterator_copyright [#721](https://github.com/greenbone/gvmd/pull/721)


[Unreleased]: https://github.com/greenbone/openvas/compare/gvmd-8.0...master
[9.0.0]: https://github.com/greenbone/gvmd/compare/gvmd-8.0...gvmd-9.0

## [8.0.1] (unreleased)

Expand Down Expand Up @@ -131,7 +143,7 @@ long schedule XML, not just if only the schedules are requested. [#500](https://
- Remove -m SMB3 for smbclient in SMB alert, which allows changing the maximum protocol version via the smbclient config instead of forcing a particular one in the alert script. [#505](https://github.com/greenbone/gvmd/pull/505)
- Remove "slave" from valid_db_resource_type. [#558](https://github.com/greenbone/gvmd/pull/558)

[8.0.1]: https://github.com/greenbone/openvas/compare/v8.0.0...gvmd-8.0
[8.0.1]: https://github.com/greenbone/gvmd/compare/v8.0.0...gvmd-8.0

## [8.0.0] (2019-04-05)

Expand Down Expand Up @@ -181,4 +193,4 @@ long schedule XML, not just if only the schedules are requested. [#500](https://
- The compile-time LOG option has been removed.
- Report format special case has been removed from send_get_common [#456](https://github.com/greenbone/gvmd/pull/456)

[8.0.0]: https://github.com/greenbone/openvas/compare/v8.0+beta2...v8.0.0
[8.0.0]: https://github.com/greenbone/gvmd/compare/v8.0+beta2...v8.0.0
6 changes: 5 additions & 1 deletion src/manage_sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -59345,12 +59345,16 @@ modify_setting (const gchar *uuid, const gchar *name,
setting_name = g_strdup ("All SecInfo Top Dashboard Configuration");

/*
* Remediation dashboards
* Resilience / Remediation dashboards
*/

/* Tickets */
else if (strcmp (uuid, "70b0626f-a835-478e-8194-e09f97887a15") == 0)
setting_name = g_strdup ("Tickets Top Dashboard Configuration");

/* Business Process Model (BPM) */
else if (strcmp (uuid, "3232d608-e5bb-415e-99aa-019f16eede8d") == 0)
setting_name = g_strdup ("BPM Dashboard Configuration");
}

if (setting_name)
Expand Down