soumyadeepdas/tbl_WebBotPublic · Community Store Listing
Demo WebApp
14 commands0 envUpdated 19d agoCreated Oct 27, 2025
commands/membership_web.js
javascript · 22 lines · click line # to share
1/**#command2name: membership_web3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12const channels = [13 { id: "@Telebothaven", name: "TeleBotHost update" },14 { id: "@tbhcodes", name: "TeleBotHost codes" },15 ];16 17res.render("membership.html", {18 data:{19 channels: channels,20 membership_api_url: Webapp.getUrl("membership")21 }22})