diff --git a/galaxy_ng/app/constants.py b/galaxy_ng/app/constants.py index f958b06d3c..bb22ebb418 100644 --- a/galaxy_ng/app/constants.py +++ b/galaxy_ng/app/constants.py @@ -54,12 +54,24 @@ class DeploymentMode(enum.Enum): "global_description": _("Upload collections to any existing namespace."), "ui_category": _("Collection Namespaces"), }, + "ansible.view_collection": { + "name": _("View collection"), + "object_description": _("View this collection."), + "global_description": _("View any existing collection."), + "ui_category": _("Collections"), + }, "ansible.delete_collection": { "name": _("Delete collection"), "object_description": _("Delete this collection."), "global_description": _("Delete any existing collection."), "ui_category": _("Collections"), }, + "ansible.view_ansible_repo_content": { + "name": _("View Ansible repo content"), + "object_description": _("View content of this Ansible repository."), + "global_description": _("View collections in any existing namespace."), + "ui_category": _("Collections"), + }, "ansible.modify_ansible_repo_content": { "name": _("Modify Ansible repo content"), "object_description": _("Modify content of this Ansible repository."),