diff --git a/docs.openc3.com/docs/configuration/plugins.md b/docs.openc3.com/docs/configuration/plugins.md index d05ba92033..f0abe1d4bc 100644 --- a/docs.openc3.com/docs/configuration/plugins.md +++ b/docs.openc3.com/docs/configuration/plugins.md @@ -808,6 +808,7 @@ Defines a custom widget that can be used in Telemetry Viewer screens. | Parameter | Description | Required | |-----------|-------------|----------| | Widget Name | The name of the widget will be used to build a path to the widget implementation. For example, `WIDGET HELLOWORLD` will find the as-built file tools/widgets/HelloworldWidget/HelloworldWidget.umd.min.js. See the [Custom Widgets](../guides/custom-widgets.md) guide for more details. | True | +| Label | The label for the widget that will appear in the Data Viewer component drop down | False | Example Usage: ```ruby diff --git a/docs.openc3.com/docs/tools/cmd-tlm-server.md b/docs.openc3.com/docs/tools/cmd-tlm-server.md index 766353c925..75abe10a4c 100644 --- a/docs.openc3.com/docs/tools/cmd-tlm-server.md +++ b/docs.openc3.com/docs/tools/cmd-tlm-server.md @@ -27,10 +27,14 @@ The Interfaces tab displays all the interfaces defined by your COSMOS installati ## Targets Tab -The Targets tab displays all the targets and their mapped interfaces. +The Targets tab displays all the targets and their mapped interfaces along with the Command Authority status (Enterprise Only). ![Targets](/img/cmd_tlm_server/targets.png) +Command Authority is enabled in the Admin Console and is enabled scope wide. Once Command Authority is enabled, individual users can give and take Command Authority which enables exclusive command and script access to that target. Without Command Authority, users can not send a command or start a script under that target. Note, commands or scripts scheduled with Calendar or Autonomic are not affected by Command Authority. + +![Command Authority](/img/cmd_tlm_server/cmd_authority.png) + ## Command Packets Tab The Command Packets tab displays all the available commands. The table can be sorted by clicking on the column headers. The table is paginated to support thousands of commands. The search bar searches all pages for a command. diff --git a/docs.openc3.com/static/img/cmd_tlm_server/cmd_authority.png b/docs.openc3.com/static/img/cmd_tlm_server/cmd_authority.png new file mode 100644 index 0000000000..938137ce9d Binary files /dev/null and b/docs.openc3.com/static/img/cmd_tlm_server/cmd_authority.png differ diff --git a/docs.openc3.com/static/img/cmd_tlm_server/targets.png b/docs.openc3.com/static/img/cmd_tlm_server/targets.png index 606fc0e881..7997cbce81 100644 Binary files a/docs.openc3.com/static/img/cmd_tlm_server/targets.png and b/docs.openc3.com/static/img/cmd_tlm_server/targets.png differ