📺 listall.Channel(options)
Lists channels across all users under a given product.
1await listall.Channel({2 productName: "HBH-CMS",3 userPage: 1,4 userLimit: 10,5 channelPage: 1,6 channelLimit: 107});
Parameters
| Name | Description |
|---|---|
productName |
Product scope (example: "HBH-CMS") |
userPage |
User pagination (example: 1) |
userLimit |
Users per page (example: 10) |
channelPage |
Channel pagination (example: 1) |
channelLimit |
Channels per page (example: 10) |
Response
1{2 success: true,3 data: {4 "alice@example.com": ["Channel1", "Channel2"],5 "bob@example.com": ["News"]6 }7}
Notes
- Traverses User → Product → Channel
- Channel names are normalized
- Errors per user are safely skipped