mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-23 09:18:30 +02:00
Url parameters for websocket URLs
This commit is contained in:
@@ -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"]
|
||||
@@ -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>
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user