Skip to content

Commit 8f535a8

Browse files
fix invalid plugin links (#3186)
1 parent 23a29f5 commit 8f535a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/security/scope.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ The scope type needs be of any [`serde`](https://docs.rs/serde/latest/serde/) se
1414
These types are plugin-specific in general. For scoped commands implemented in a Tauri application
1515
the scope type needs to be defined in the application and then enforced in the command implementation.
1616

17-
For instance, the [`Fs`](https://github.com/tauri-apps/plugins-workspace/tree/plugins/fs) plugin allows you to use scopes to allow or deny certain directories and files
18-
and the [`http`](https://github.com/tauri-apps/plugins-workspace/tree/plugins/http) plugin uses scopes to filter URLs that are allowed to be reached.
17+
For instance, the [`Fs`](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/fs) plugin allows you to use scopes to allow or deny certain directories and files
18+
and the [`http`](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/http) plugin uses scopes to filter URLs that are allowed to be reached.
1919

2020
The scope is passed to the command and handling or properly enforcing is implemented
2121
by the command itself.
@@ -29,7 +29,7 @@ The scope validation implementation should be audited to ensure correctness.
2929

3030
## Examples
3131

32-
These examples are taken from the [`Fs`](https://github.com/tauri-apps/plugins-workspace/tree/plugins/fs) plugin permissions:
32+
These examples are taken from the [`Fs`](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/fs) plugin permissions:
3333

3434
The scope type in this plugin for all commands is a string,
3535
which contains a [`glob`](https://docs.rs/glob/latest/glob/) compatible path.

0 commit comments

Comments
 (0)