Mercurial Hosting > freedit
view src/lib/Config.luan @ 38:19269d18b949
sceditor work
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 05 Aug 2022 00:04:58 -0600 |
parents | 94e26bffd4fb |
children |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local Db = require "site:/lib/Db.luan" local Config = {} Config.default_text = [[ local Forum = require "site:/lib/Forum.luan" Forum.title = "Your Forum" ]] local doc = Db.get_document("type:config") Config.text = doc and doc.config or Config.default_text function Config.set(text) Db.run_in_transaction( function() local doc = Db.get_document("type:config") or {type="config"} doc.config = text Db.save(doc) end ) end return Config