@ably/cli
Version:
Ably CLI for Pub/Sub, Chat and Spaces
13 lines (12 loc) • 531 B
JavaScript
import { BaseTopicCommand } from "../../../base-topic-command.js";
export default class ChannelRulesIndexCommand extends BaseTopicCommand {
topicName = "apps:channel-rules";
commandGroup = "channel rules";
static description = "Manage Ably channel rules (namespaces)";
static examples = [
"ably apps channel-rules list",
'ably apps channel-rules create --name "chat" --persisted',
"ably apps channel-rules update chat --push-enabled",
"ably apps channel-rules delete chat",
];
}