You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tellme-bot/packages/server/parsers/kuma.js

23 lines
502 B

2 years ago
import Parser from './parser.js'
import DOMPurify from 'isomorphic-dompurify'
2 years ago
/**
* Parser for Kuma, getting only error message
2 years ago
*
2 years ago
* @author Björn Hase
* @license hhttps://www.gnu.org/licenses/gpl-3.0.en.html GPL-3
2 years ago
* @link https://gitea.node001.net/HerrHase/tellme-bot.git
2 years ago
*
*/
class Kuma extends Parser
{
parse()
{
// check for msg and clean it
if (this.body.msg) {
this.message = DOMPurify.sanitize(this.body.msg)
}
2 years ago
}
}
export default Kuma