Url parameters for websocket URLs

This commit is contained in:
Gregory Schier
2025-02-03 11:40:19 -08:00
parent dd0516cc55
commit fcf2577430
27 changed files with 432 additions and 259 deletions

View File

@@ -0,0 +1,13 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-duplicate-request"
description = "Enables the duplicate_request command without any pre-configured scope."
commands.allow = ["duplicate_request"]
[[permission]]
identifier = "deny-duplicate-request"
description = "Denies the duplicate_request command without any pre-configured scope."
commands.deny = ["duplicate_request"]

View File

@@ -7,6 +7,7 @@ Default permissions for the plugin
- `allow-delete-connection`
- `allow-delete-connections`
- `allow-delete-request`
- `allow-duplicate-request`
- `allow-list-connections`
- `allow-list-events`
- `allow-list-requests`
@@ -181,6 +182,32 @@ Denies the delete_request command without any pre-configured scope.
<tr>
<td>
`yaak-ws:allow-duplicate-request`
</td>
<td>
Enables the duplicate_request command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-ws:deny-duplicate-request`
</td>
<td>
Denies the duplicate_request command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`yaak-ws:allow-list-connections`
</td>

View File

@@ -6,6 +6,7 @@ permissions = [
"allow-delete-connection",
"allow-delete-connections",
"allow-delete-request",
"allow-duplicate-request",
"allow-list-connections",
"allow-list-events",
"allow-list-requests",

View File

@@ -354,6 +354,16 @@
"type": "string",
"const": "deny-delete-request"
},
{
"description": "Enables the duplicate_request command without any pre-configured scope.",
"type": "string",
"const": "allow-duplicate-request"
},
{
"description": "Denies the duplicate_request command without any pre-configured scope.",
"type": "string",
"const": "deny-duplicate-request"
},
{
"description": "Enables the list_connections command without any pre-configured scope.",
"type": "string",