Skip to content

Commit

Permalink
docs: Add missing unpacking operator in Permission objects docs (#4884)
Browse files Browse the repository at this point in the history
docs: add missing unpacking operator in Permission objects docs

Signed-off-by: boliri <[email protected]>
  • Loading branch information
boliri authored Jan 9, 2025
1 parent e983882 commit 1d47cb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/getting-started/concepts/permission.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Permission(
name="feature-reader",
types=[FeatureView, FeatureService],
policy=RoleBasedPolicy(roles=["super-reader"]),
actions=[AuthzedAction.DESCRIBE, READ],
actions=[AuthzedAction.DESCRIBE, *READ],
)
```

Expand Down

0 comments on commit 1d47cb6

Please sign in to comment.