Module: Teems::Commands::MeetingOptionDefs
- Defined in:
- lib/teems/commands/meeting.rb
Overview
Option definitions for the meeting command
Constant Summary collapse
- ALL =
{ '--transcript' => ->(opts, _args) { opts[:transcript] = true }, '--recording' => ->(opts, _args) { opts[:recording] = true }, '--audio' => ->(opts, _args) { opts[:audio] = true }, '--no-video' => ->(opts, _args) { opts[:no_video] = true }, '--chat' => ->(opts, _args) { opts[:chat] = true }, '-o' => ->(opts, args) { opts[:output_dir] = args.shift }, '--output-dir' => ->(opts, args) { opts[:output_dir] = args.shift } }.freeze