Browse Source

vidoes - make channelId arg optional

Leszek Wiesner 3 years ago
parent
commit
05f6dad434
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cli/src/commands/content/videos.ts

+ 1 - 1
cli/src/commands/content/videos.ts

@@ -8,7 +8,7 @@ export default class VideosCommand extends ContentDirectoryCommandBase {
   static args = [
     {
       name: 'channelId',
-      required: true,
+      required: false,
       description: 'ID of the Channel',
     },
   ]