Mercurial Hosting > hghosting
view src/private/tools/links.txt.luan @ 19:a90e510ccc4f
fix restart/move logs
author | Vadim Filimonov <fffilimonov@yandex.ru> |
---|---|
date | Mon, 05 Aug 2024 11:29:06 +0300 |
parents | dfc36e7ed22c |
children |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local pairs = Luan.pairs or error() local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local Shared = require "site:/lib/Shared.luan" local config = Shared.config or error() return function() Io.stdout = Http.response.text_writer() for _, repo in pairs(config.repos) do if repo.users.backup then %> <%=repo.name%> <% end end end