mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-12-18 20:04:17 +01:00
# Description of Changes Adds Sign Up with email to desktop app. SSO sign up will come in a future PR.
27 lines
535 B
JSON
27 lines
535 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "enables the default permissions",
|
|
"windows": [
|
|
"main"
|
|
],
|
|
"permissions": [
|
|
"core:default",
|
|
"http:default",
|
|
{
|
|
"identifier": "http:allow-fetch",
|
|
"allow": [
|
|
{ "url": "http://*" },
|
|
{ "url": "http://*:*" },
|
|
{ "url": "https://*" }
|
|
]
|
|
},
|
|
{
|
|
"identifier": "fs:allow-read-file",
|
|
"allow": [{ "path": "**" }]
|
|
},
|
|
"opener:default",
|
|
"shell:allow-open"
|
|
]
|
|
}
|