mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 02:04:54 +00:00
13 lines
298 B
Lua
13 lines
298 B
Lua
-- Edit schema action
|
|
|
|
require("schemas.types")
|
|
|
|
---Opens the edit schema dialog for the specified schema
|
|
---@param ctx EditSchemaContext
|
|
---@return ActionResult
|
|
local function editSchema(ctx)
|
|
return { success = true, action = "open_schema_dialog", id = ctx.schemaId }
|
|
end
|
|
|
|
return editSchema
|