Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(rbac): fix condition rules api url #1914

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/rbac-backend/docs/apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ Conditional permission policies are fairly complex. For more information on how

### GET conditional rules

GET <api/plugins/condition-rules>
GET <api/permission/plugins/condition-rules>

Provides conditional rule parameter schemas.

Expand Down
4 changes: 2 additions & 2 deletions plugins/rbac-backend/docs/conditions.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ The structure of the condition JSON object is as follows:
| resourceType | Resource type provided by the plugin (e.g., "catalog-entity") | String |
| conditions | Condition JSON with parameters or array parameters joined by criteria | JSON |

To get the available conditional rules that can be used to create conditional permission policies, use the GET API request `api/plugins/condition-rules` as seen below.
To get the available conditional rules that can be used to create conditional permission policies, use the GET API request `api/permission/plugins/condition-rules` as seen below.

GET <api/plugins/condition-rules>
GET <api/permission/plugins/condition-rules>

Provides condition parameters schemas.

Expand Down
Loading