We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I had to make a like 50 permisions like this:
{ "identifier": "fs:allow-appdata-write", "allow": [ { "path": "" }, { "path": "/" }, { "path": "/**/" } ] },
Just to be able to remove files.
Something like: { "identifier": ["fs:scope-1", "fs:scope-2"], "allow": [ { "path": "" }, { "path": "/" }, { "path": "/**/" } ] },
or
{ "identifier": "fs:all", "allow": [ { "path": "" }, { "path": "/" }, { "path": "/**/" } ] },
No response
PD: I love tauri
The text was updated successfully, but these errors were encountered:
Update: Actually, there are some scopes that do that, skill issue :). But it would be great if we can make it move clear on the documentation. Thanks!
{ "identifier": "fs:allow-remove", "allow": [ { "path": "**" }, { "path": "**/*" }, { "path": "/**/*" } ] }, { "identifier": "fs:write-all", "allow": [ { "path": "**" }, { "path": "**/*" }, { "path": "/**/*" } ] }, { "identifier": "fs:read-all", "allow": [ { "path": "**" }, { "path": "**/*" }, { "path": "/**/*" } ] }
Sorry, something went wrong.
No branches or pull requests
Describe the problem
I had to make a like 50 permisions like this:
{
"identifier": "fs:allow-appdata-write",
"allow": [
{
"path": ""
},
{
"path": "/"
},
{
"path": "/**/"
}
]
},
Just to be able to remove files.
Describe the solution you'd like
Something like:
{
"identifier": ["fs:scope-1", "fs:scope-2"],
"allow": [
{
"path": ""
},
{
"path": "/"
},
{
"path": "/**/"
}
]
},
or
{
"identifier": "fs:all",
"allow": [
{
"path": ""
},
{
"path": "/"
},
{
"path": "/**/"
}
]
},
Alternatives considered
No response
Additional context
PD: I love tauri
The text was updated successfully, but these errors were encountered: