diff --git a/src/content/docs/concept/Inter-Process Communication/index.mdx b/src/content/docs/concept/Inter-Process Communication/index.mdx index 3117111cdf..79431fa78b 100644 --- a/src/content/docs/concept/Inter-Process Communication/index.mdx +++ b/src/content/docs/concept/Inter-Process Communication/index.mdx @@ -54,6 +54,12 @@ Core -> Frontend: "Event"{style.animated: true}
Events sent between the Core and the Webview.
+{/* This is important to mention to make it clear to the developer +what they need to do to secure their application. */} +Under the hood, events still utilize Commands, +and the access to the events API is controlled by the +[Event permissions](/reference/acl/core-permissions/#event). + ## Commands Tauri also provides a [foreign function interface]-like abstraction on top of IPC messages[^1]. The primary API, `invoke`, is similar to the browser's `fetch` API and allows the Frontend to invoke Rust functions, pass arguments, and receive data.