You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the authentication.py file If there exists a key that is not in the policy conditions dict or authentication policies dict an error could be thrown. These checks should avoid errors. Great work on putting these flow chart visualizations together.
Generate First Rule Nodes
for policy_id, app_ids in apps_by_policy.items():
if policy_id not in authentication_policies:
continue # Skip this iteration if policy_id is not in authentication_policies
policy_struct = authentication_policies[policy_id]
print(policy_struct['Policy'].name)
if policy_id not in policy_conditions:
continue
The text was updated successfully, but these errors were encountered:
In the authentication.py file If there exists a key that is not in the policy conditions dict or authentication policies dict an error could be thrown. These checks should avoid errors. Great work on putting these flow chart visualizations together.
Generate First Rule Nodes
The text was updated successfully, but these errors were encountered: