This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/botkube/README.md
Tobias Brunner 93240e17ac
All checks were successful
continuous-integration/drone/push Build is passing
scale botkube up again
2020-12-13 21:01:45 +01:00

403 B

BotKube

Rocket.Chat Script

class Script {
    process_incoming_request({
        request
    }) {
        console.log(request.content);

        return {
            content: {
                username: "BotKube",
                text: request.content.summary
            }
        };

        return {
            error: {
                success: false
            }
        };
    }
}