From 3dfdf3acb50fa19352f8a000ff01d026e972542e Mon Sep 17 00:00:00 2001 From: Nicholas Blumhardt Date: Wed, 10 Jul 2024 12:03:25 +1000 Subject: [PATCH] Add Organization to the list of permissions documented for the `apikey create` command --- src/SeqCli/Cli/Commands/ApiKey/CreateCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SeqCli/Cli/Commands/ApiKey/CreateCommand.cs b/src/SeqCli/Cli/Commands/ApiKey/CreateCommand.cs index 30a681e9..dfdd81cf 100644 --- a/src/SeqCli/Cli/Commands/ApiKey/CreateCommand.cs +++ b/src/SeqCli/Cli/Commands/ApiKey/CreateCommand.cs @@ -75,7 +75,7 @@ public CreateCommand(SeqConnectionFactory connectionFactory, SeqCliConfig config Options.Add( "permissions=", - "A comma-separated list of permissions to delegate to the API key; valid permissions are `Ingest` (default), `Read`, `Write`, `Project` and `System`", + "A comma-separated list of permissions to delegate to the API key; valid permissions are `Ingest` (default), `Read`, `Write`, `Project`, `Organization`, and `System`", v => _permissions = ArgumentString.NormalizeList(v)); Options.Add(