squishy

Wed, 15 Mar 2023 17:38:56 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Wed, 15 Mar 2023 17:38:56 +0000
changeset 173
e46ac57fa60b
parent 165
ec0567256b11
child 174
56316e345595
permissions
-rw-r--r--

rtbl_guard: New plugin to subscribe to RTBLs and act on them in MUCs

This allows applying an RTBL to a MUC that doesn't have built-in RTBL support.

Note that it doesn't currently take any action when an entry is removed from
an RTBL.

-- Riddim plugins
plugins = {
	"autosubscribe",
	"groupchat",
	"commands",
	"version",
	"ping",
	"tell",
	"uptime",
	"resolvejid",
	"bookmarks",
	"bugzilla",
	"disco",
	"eliza",
	"factoids",
	"ietf",
	"invited",
	"msgforward",
	"opdown",
	"pubsub2room",
	"rtbl_admin",
	"rtbl_guard",
	"simple_commands",
	"slap",
	"topic",
	"trac",
	"github",
	"urltitle",
	"xeps",
	"xkcd",
	"xkcd2",
	"youtube",
}

for _, plugin in ipairs(plugins) do
	Module("riddim.plugins."..plugin)("plugins/"..plugin..".lua")
end

Main "init.lua"

Output "riddim.lua"

mercurial