From d0f3a9c3fb6abc722263b24ae1ea80420de73870 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Thu, 14 Apr 2022 13:55:39 +0200 Subject: [PATCH] dashboard: Fix wrong testids --- checker/checks.go | 14 +++++++++----- token-validator/htdocs/js/adlin-common.js | 6 +++--- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/checker/checks.go b/checker/checks.go index 88e85fd..5339521 100644 --- a/checker/checks.go +++ b/checker/checks.go @@ -16,6 +16,8 @@ const ( DNSSEC PingResolver DHCPonRH + DHCPonDG + DHCPonCM DHCPonGuests RHaccessNews RHaccessNet @@ -43,10 +45,12 @@ var CheckMap = map[int]map[AdlinTest]int{ HTTPSonDelegatedDomain: 205, MatrixSrv: 206, MatrixClt: 207, - DHCPonRH: 209, - DHCPonGuests: 212, - RHaccessNews: 210, - RHaccessNet: 211, - GuestNet: 213, + DHCPonRH: 208, + DHCPonDG: 209, + DHCPonCM: 210, + DHCPonGuests: 213, + RHaccessNews: 211, + RHaccessNet: 212, + GuestNet: 214, }, } diff --git a/token-validator/htdocs/js/adlin-common.js b/token-validator/htdocs/js/adlin-common.js index e6b31dc..23f49ad 100644 --- a/token-validator/htdocs/js/adlin-common.js +++ b/token-validator/htdocs/js/adlin-common.js @@ -45,8 +45,8 @@ const tuto_progress = [ 205: { title: "HTTPS on delegated domain", icon: "4", label: "HTTPS on NS"}, 206: { title: "Matrix Federation", icon: "5", label: "Matrix SRV"}, 207: { title: "Matrix Client", icon: "6", label: "Matrix CLT"}, - 209: { title: "RH access net", icon: "7", label: "RH net"}, - 210: { title: "DG access net", icon: "8", label: "DG net"}, - 211: { title: "CM access net", icon: "9", label: "CM net"}, + 208: { title: "RH access net", icon: "7", label: "RH net"}, + 209: { title: "DG access net", icon: "8", label: "DG net"}, + 210: { title: "CM access net", icon: "9", label: "CM net"}, }, ];