mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-07-24 17:20:51 +02:00
feat: update to tauri beta, add permissions (#862)
Co-authored-by: Lucas Nogueira <lucas@tauri.app> Co-authored-by: Lucas Nogueira <lucas@crabnebula.dev>
This commit is contained in:
@@ -0,0 +1 @@
|
||||
schemas/
|
||||
@@ -0,0 +1 @@
|
||||
schemas/
|
||||
@@ -0,0 +1,13 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
[[permission]]
|
||||
identifier = "allow-connect"
|
||||
description = "Enables the connect command without any pre-configured scope."
|
||||
commands.allow = ["connect"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-connect"
|
||||
description = "Denies the connect command without any pre-configured scope."
|
||||
commands.deny = ["connect"]
|
||||
@@ -0,0 +1,13 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
[[permission]]
|
||||
identifier = "allow-send"
|
||||
description = "Enables the send command without any pre-configured scope."
|
||||
commands.allow = ["send"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-send"
|
||||
description = "Denies the send command without any pre-configured scope."
|
||||
commands.deny = ["send"]
|
||||
@@ -0,0 +1,22 @@
|
||||
# Permissions
|
||||
|
||||
## allow-connect
|
||||
|
||||
Enables the connect command without any pre-configured scope.
|
||||
|
||||
## deny-connect
|
||||
|
||||
Denies the connect command without any pre-configured scope.
|
||||
|
||||
## allow-send
|
||||
|
||||
Enables the send command without any pre-configured scope.
|
||||
|
||||
## deny-send
|
||||
|
||||
Denies the send command without any pre-configured scope.
|
||||
|
||||
## default
|
||||
|
||||
Allows connecting and sending data to a WebSocket server
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
"$schema" = "schemas/schema.json"
|
||||
[default]
|
||||
description = "Allows connecting and sending data to a WebSocket server"
|
||||
permissions = ["allow-connect", "allow-send"]
|
||||
Reference in New Issue
Block a user