aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri/capabilities/default.json
blob: ea3fd7bbe5e4aa79d3a2287809c4ae4ee1346d56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  "$schema": "../gen/schemas/desktop-schema.json",
  "identifier": "default",
  "description": "Default capabilities for the DropOut launcher",
  "windows": ["main"],
  "permissions": [
    "core:default",
    "core:event:default",
    "core:event:allow-listen",
    "core:event:allow-emit",
    "core:app:default",
    "core:app:allow-version",
    "core:path:default",
    "core:window:default",
    "shell:allow-open",
    "dialog:default",
    "fs:default",
    {
      "identifier": "fs:allow-read",
      "allow": [{ "path": "**" }]
    },
    {
        "identifier": "fs:allow-exists",
        "allow": [{ "path": "**" }]
    },
    {
        "identifier": "fs:allow-write-text-file",
        "allow": [{ "path": "**" }]
    }
  ]
}