From 0fe1bc64f2b55b28b955c36a9cbf4d746bd74e10 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Tue, 13 Apr 2021 14:23:53 +0200 Subject: [PATCH] added PrepareProject to OpenPype Admin group --- .../ftrack/event_handlers_server/action_prepare_project.py | 3 ++- .../ftrack/event_handlers_user/action_prepare_project.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/openpype/modules/ftrack/event_handlers_server/action_prepare_project.py b/openpype/modules/ftrack/event_handlers_server/action_prepare_project.py index e274ce8eb3..decb6c6a75 100644 --- a/openpype/modules/ftrack/event_handlers_server/action_prepare_project.py +++ b/openpype/modules/ftrack/event_handlers_server/action_prepare_project.py @@ -14,7 +14,8 @@ class PrepareProjectServer(ServerAction): """Prepare project attributes in Anatomy.""" identifier = "prepare.project.server" - label = "Prepare Project (Server)" + label = "OpenPype Admin" + variant = "- Prepare Project (Server)" description = "Set basic attributes on the project" settings_key = "prepare_project" diff --git a/openpype/modules/ftrack/event_handlers_user/action_prepare_project.py b/openpype/modules/ftrack/event_handlers_user/action_prepare_project.py index a885f8571c..c2f0533c33 100644 --- a/openpype/modules/ftrack/event_handlers_user/action_prepare_project.py +++ b/openpype/modules/ftrack/event_handlers_user/action_prepare_project.py @@ -17,7 +17,8 @@ class PrepareProjectLocal(BaseAction): """Prepare project attributes in Anatomy.""" identifier = "prepare.project.local" - label = "Prepare Project (Local)" + label = "OpenPype Admin" + variant = "- Prepare Project (Local)" description = "Set basic attributes on the project" icon = statics_icon("ftrack", "action_icons", "PrepareProject.svg")