Skip to content

Commit

Permalink
Merge pull request #2624 from swaterkamp/TLSlinkFromHost
Browse files Browse the repository at this point in the history
Link from Hosts to TLS Certificates
  • Loading branch information
swaterkamp authored Dec 14, 2020
2 parents f621d28 + ded279b commit df6db25
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [20.8.1] - unreleased

### Added
- Added icon to host detailspage to link to TLS certificates [#2624](https://github.com/greenbone/gsa/pull/2624)
- Added form validation for user setting "rows per page"
[#2478](https://github.com/greenbone/gsa/pull/2478), [#2505](https://github.com/greenbone/gsa/pull/2505)
- Added option for "Start Task" event upon "New SecInfo arrived" condition in alerts dialog [#2418](https://github.com/greenbone/gsa/pull/2418)
Expand Down
1 change: 1 addition & 0 deletions gsa/public/locales/gsa-de.json
Original file line number Diff line number Diff line change
Expand Up @@ -1530,6 +1530,7 @@
"TLS Certificates are always included for now": "TLS-Zertifikate werden bis auf Weiteres immer hinzugefügt",
"TLS Certificates by Modification Time (Total: {{count}})": "TLS-Zertifikate nach Änderungszeit (Gesamt: {{count}})",
"TLS Certificates by Status (Total: {{count}})": "TLS-Zertifikate nach Status (Gesamt: {{count}})",
"TLS Certificates for this Host": "TLS-Zertifikate für diesen Host",
"Table: CERT-Bund Advisories by CVSS": "Tabelle: CERT-Bund-Advisories nach CVSS",
"Table: CERT-Bund Advisories by Creation Time": "Tabelle: CERT-Bund-Advisories nach Erstellungszeit",
"Table: CERT-Bund Advisories by Severity Class": "Tabelle: CERT-Bund-Advisories nach Schweregradklasse",
Expand Down
8 changes: 8 additions & 0 deletions gsa/src/web/pages/hosts/detailspage.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import ListIcon from 'web/components/icon/listicon';
import ManualIcon from 'web/components/icon/manualicon';
import OsIcon from 'web/components/icon/osicon';
import ResultIcon from 'web/components/icon/resulticon';
import TlsCertificateIcon from 'web/components/icon/tlscertificateicon';

import Divider from 'web/components/layout/divider';
import IconDivider from 'web/components/layout/icondivider';
Expand Down Expand Up @@ -126,6 +127,13 @@ const ToolBarIcons = ({
>
<ResultIcon />
</Link>
<Link
to="tlsCertificates"
filter={'host_id=' + entity.id}
title={_('TLS Certificates for this Host')}
>
<TlsCertificateIcon />
</Link>
</IconDivider>
</Divider>
);
Expand Down

0 comments on commit df6db25

Please sign in to comment.