From 0ed33973d7766465f5e1f5b42e97155bbdd777ff Mon Sep 17 00:00:00 2001 From: Darcy Laycock Date: Fri, 7 Jun 2024 10:29:09 +1000 Subject: [PATCH 1/2] Update AppConfig.json to support myGov in Australia --- AppConfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/AppConfig.json b/AppConfig.json index b36f501..c852fdf 100644 --- a/AppConfig.json +++ b/AppConfig.json @@ -320,6 +320,11 @@ "serviceName": "Twitter", "matcherPattern": "Twitter login code: (\\d{6,9})", "codeExtractorPattern": "(\\d{6,9})" - } + }, + { + "serviceName": "myGov", + "matcherPattern": "^myGov Security: Your security code is (\\d{6}).", + "codeExtractorPattern": "(\\d{6})" + }, ] } From b3c80813b00e913c298887acf02f4fee5786a3a9 Mon Sep 17 00:00:00 2001 From: Darcy Laycock Date: Fri, 7 Jun 2024 10:32:52 +1000 Subject: [PATCH 2/2] Fix duplicated comma at the end of the line --- AppConfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppConfig.json b/AppConfig.json index c852fdf..5241b23 100644 --- a/AppConfig.json +++ b/AppConfig.json @@ -325,6 +325,6 @@ "serviceName": "myGov", "matcherPattern": "^myGov Security: Your security code is (\\d{6}).", "codeExtractorPattern": "(\\d{6})" - }, + } ] }