From 8184edb88173ff440367377f2cf073e112da8763 Mon Sep 17 00:00:00 2001 From: stremovsky Date: Sat, 4 Jan 2020 21:07:35 +0200 Subject: [PATCH] consent status fix --- src/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.go b/src/utils.go index afdacd9..8e8b3a9 100644 --- a/src/utils.go +++ b/src/utils.go @@ -27,7 +27,7 @@ var ( regexBrief = regexp.MustCompile("^[a-z0-9\\-]{1,64}$") regexAppName = regexp.MustCompile("^[a-z][a-z0-9]{1,20}$") regexExpiration = regexp.MustCompile("^([0-9]+)([mhds])?$") - consentYesStatuses = []string{"yes", "accept", "given", "true", "agree"} + consentYesStatuses = []string{"yes", "accept", "agree", "approve", "given", "true"} ) // Consideration why collection of meta data patch was postpone: