diff options
-rw-r--r-- | src/defendpoint.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/defendpoint.lisp b/src/defendpoint.lisp index 72c536e..23955b5 100644 --- a/src/defendpoint.lisp +++ b/src/defendpoint.lisp @@ -164,7 +164,7 @@ PART is either :if path-part-p :note "REGEX or (KWD REGEX &optional PARSER)") (<parameters> - :match (:seq (:= :parameters) (:+ <param>)) + :match (:seq (:or= :parameters :requirements) (:+ <param>)) :then (cons :parameters (second <parameters>)) :note "Request parameters - will signal an error if missing from the user request") (<param> @@ -172,7 +172,7 @@ PART is either :if parameter-spec-p :note "(NAME TYPE &optional DOCSTRING)") (<properties> - :match (:seq (:= :properties) (:+ <prop>)) + :match (:seq (:or= :properties :state) (:+ <prop>)) :then (cons :properties (second <properties>)) :note "Values that should be filled-in during authentication or authorization") (<prop> |