New plugin: adduser_note

This commit is contained in:
Juerd Waalboer 2023-09-20 20:12:42 +02:00
parent f6338fe9fc
commit 3ca6db357d

12
plugins/adduser_note Normal file
View file

@ -0,0 +1,12 @@
sub command($self, $cart, $command, @) {
if ($command eq 'adduser') {
print <<'END';
NOTE: This system is insecure by design. Other users can see your transactions,
or pay using your account. We trust each other not to abuse this power.
END
}
return NEXT;
}