Files
metabuilder/packages/ui_level6/seed/scripts/system/maintenance_mode.lua
2025-12-30 12:24:30 +00:00

19 lines
514 B
Lua

-- Maintenance mode toggle component
-- Single function module for supergod administration
---@class MaintenanceMode
local M = {}
---Render maintenance mode toggle
---@param enabled boolean Current maintenance mode status
---@return MaintenanceToggleComponent
function M.maintenance_mode(enabled)
return {
type = "maintenance_toggle",
enabled = enabled,
warningMessage = "Enabling maintenance mode will prevent all non-supergod users from accessing the system."
}
end
return M