UNPKG

node-red-contrib-chatbot

Version:

REDBot a Chat bot for a full featured chat bot for Telegram, Facebook Messenger and Slack. Almost no coding skills required

28 lines (25 loc) 504 B
import { plug } from 'code-plug'; import ConfigureChatbot from './pages/configure-chatbot'; plug('sidebar', null, { id: 'configuration', label: 'Configuration', permission: 'configure', icon: 'cog', options: [ { id: 'configuration-chatbot', label: 'Chatbot', url: '/configuration-chatbot', } ] }); plug( 'pages', ConfigureChatbot, { url: '/configuration-chatbot', title: 'Chatbot', id: 'configuration-chatbot', permission: 'configure' } );