@the-liberators/ngx-scrumteamsurvey-tools 2.3.34 → 2.3.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4408,7 +4408,7 @@ class ValidKeyGuard {
|
|
|
4408
4408
|
if (!route.params.key) {
|
|
4409
4409
|
return;
|
|
4410
4410
|
}
|
|
4411
|
-
var valid = route.params.key.length >= 18 && route.params.key.length <=
|
|
4411
|
+
var valid = route.params.key.length >= 18 && route.params.key.length <= 80;
|
|
4412
4412
|
if (!valid) {
|
|
4413
4413
|
return this.router.parseUrl('/');
|
|
4414
4414
|
}
|