mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-21 05:59:16 +00:00

- Introduced `select` and `execute` functions in the database module to facilitate querying and executing SQL commands. - Updated the Tauri plugin to expose these commands, allowing for database interactions from the frontend. - Added corresponding permissions for the new commands in the permissions configuration. - Enhanced the database library with JSON value handling for query parameters.
14 lines
377 B
TOML
14 lines
377 B
TOML
# Automatically generated - DO NOT EDIT!
|
|
|
|
"$schema" = "../../schemas/schema.json"
|
|
|
|
[[permission]]
|
|
identifier = "allow-select"
|
|
description = "Enables the select command without any pre-configured scope."
|
|
commands.allow = ["select"]
|
|
|
|
[[permission]]
|
|
identifier = "deny-select"
|
|
description = "Denies the select command without any pre-configured scope."
|
|
commands.deny = ["select"]
|