From d19610686f9c99bb03d21a0130d7afb798918e9f Mon Sep 17 00:00:00 2001 From: Peter Stolpe Date: Sun, 2 Feb 2025 21:09:58 +0100 Subject: [PATCH] Documentation: Added '*' to action in "Resource Scope Grammar" because a catalog request requires it. Signed-off-by: Peter Stolpe --- docs/content/spec/auth/scope.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/spec/auth/scope.md b/docs/content/spec/auth/scope.md index 1f2059add..63697c3c4 100644 --- a/docs/content/spec/auth/scope.md +++ b/docs/content/spec/auth/scope.md @@ -100,7 +100,7 @@ resourcename := [ hostname '/' ] component [ '/' component ]* hostname := hostcomponent ['.' hostcomponent]* [':' port-number] hostcomponent := /([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9])/ port-number := /[0-9]+/ -action := /[a-z]*/ +action := /[a-z*]*/ component := alpha-numeric [ separator alpha-numeric ]* alpha-numeric := /[a-z0-9]+/ separator := /[_.]|__|[-]*/