Hello All,
I need some clarifications about RuleBuilder class.
If I have to allow the fhir API - UpdateConditional through Auth interceptor successfully then,
I have to just mention -
return new RuleBuilder()
.allow().write().allResources().withAnyId().andThen().build;
Then what does this following rule signifies ?
return new RuleBuilder().allow().updateConditional().allResources().build;
When I test above rule against UpdateConditional fhir api then it throws 403 forbidden error with "issue": [
{
"severity": "error",
"code": "processing",
"diagnostics": "Access denied by default policy (no applicable rules)"
}
]
Thanks in advance,