mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-06 13:53:54 +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-execute"
|
||||
description = "Enables the execute command without any pre-configured scope."
|
||||
commands.allow = ["execute"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-execute"
|
||||
description = "Denies the execute command without any pre-configured scope."
|
||||
commands.deny = ["execute"]
|
||||
@@ -0,0 +1,13 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
[[permission]]
|
||||
identifier = "allow-kill"
|
||||
description = "Enables the kill command without any pre-configured scope."
|
||||
commands.allow = ["kill"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-kill"
|
||||
description = "Denies the kill command without any pre-configured scope."
|
||||
commands.deny = ["kill"]
|
||||
@@ -0,0 +1,13 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
[[permission]]
|
||||
identifier = "allow-open"
|
||||
description = "Enables the open command without any pre-configured scope."
|
||||
commands.allow = ["open"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-open"
|
||||
description = "Denies the open command without any pre-configured scope."
|
||||
commands.deny = ["open"]
|
||||
@@ -0,0 +1,13 @@
|
||||
# Automatically generated - DO NOT EDIT!
|
||||
|
||||
"$schema" = "../../schemas/schema.json"
|
||||
|
||||
[[permission]]
|
||||
identifier = "allow-stdin-write"
|
||||
description = "Enables the stdin_write command without any pre-configured scope."
|
||||
commands.allow = ["stdin_write"]
|
||||
|
||||
[[permission]]
|
||||
identifier = "deny-stdin-write"
|
||||
description = "Denies the stdin_write command without any pre-configured scope."
|
||||
commands.deny = ["stdin_write"]
|
||||
@@ -0,0 +1,34 @@
|
||||
# Permissions
|
||||
|
||||
## allow-execute
|
||||
|
||||
Enables the execute command without any pre-configured scope.
|
||||
|
||||
## deny-execute
|
||||
|
||||
Denies the execute command without any pre-configured scope.
|
||||
|
||||
## allow-kill
|
||||
|
||||
Enables the kill command without any pre-configured scope.
|
||||
|
||||
## deny-kill
|
||||
|
||||
Denies the kill command without any pre-configured scope.
|
||||
|
||||
## allow-open
|
||||
|
||||
Enables the open command without any pre-configured scope.
|
||||
|
||||
## deny-open
|
||||
|
||||
Denies the open command without any pre-configured scope.
|
||||
|
||||
## allow-stdin-write
|
||||
|
||||
Enables the stdin_write command without any pre-configured scope.
|
||||
|
||||
## deny-stdin-write
|
||||
|
||||
Denies the stdin_write command without any pre-configured scope.
|
||||
|
||||
Reference in New Issue
Block a user