-
Type:
Improvement
-
Status: Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 1.10.8
-
Fix Version/s: None
-
Component/s: webserver
-
Labels:None
It is possible to define arguments to Flask views as part of the UR:
@expose("<path:version>/check", methods=["POST"]) @action_logging def check(self, version): ...
Flask automatically pulls the component out of the URL for this. Right now the action_logging decorator only shows query/post parameters, but it would be nice to include these path arguments too.