Mercurial Hosting > freedit
view src/lib/Config.luan @ 12:ad1604c72156
fix bbcode
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 03 Jul 2022 22:01:23 -0600 |
parents | fc2383eb48a9 |
children | 94e26bffd4fb |
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) local doc = Db.get_document("type:config") or {type="config"} doc.config = text Db.save(doc) end return Config