Files
metabuilder/packages/ui_level4/seed/scripts/schemas/edit_schema.lua
T
2025-12-30 13:34:35 +00:00

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