plugins/autosubscribe.lua

Wed, 15 Mar 2023 12:11:29 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Wed, 15 Mar 2023 12:11:29 +0000
changeset 171
7362add76bcd
parent 19
a698d64fc929
permissions
-rw-r--r--

rtbl_admin: Allow reason and text annotations when adding/updated an entry


function riddim.plugins.autosubscribe(bot)
	bot:hook("presence", function (presence)
		if presence.stanza.attr.type ~= 'subscribe' then return nil; end
		bot:send_presence(presence.sender.jid, 'subscribed');
		return false;
	end);
end

mercurial