Skip to content
Snippets Groups Projects

make http request upper case when sending data to OPA

Merged Mohammad Torkashvand requested to merge make-method-upper-case-for-opa into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -425,7 +425,7 @@ def opa_decision(
**(opa_kwargs or {}),
**user_info,
"resource": request.url.path,
"method": request_method,
"method": request_method.upper(),
"arguments": {"path": request.path_params, "query": {**request.query_params}, "json": json},
}
}
Loading