From ab4cd2fcf10e0052740b09c33317d6fd78e8726b Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Tue, 9 Jul 2019 11:31:52 +0200 Subject: [PATCH] added administrator and project manager to allowed roles --- pype/ftrack/actions/action_sync_notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/ftrack/actions/action_sync_notes.py b/pype/ftrack/actions/action_sync_notes.py index 67771762c8..7e80ef636d 100644 --- a/pype/ftrack/actions/action_sync_notes.py +++ b/pype/ftrack/actions/action_sync_notes.py @@ -18,7 +18,7 @@ class SynchronizeNotes(BaseAction): #: Action description. description = 'Synchronize notes from one Ftrack to another' #: roles that are allowed to register this action - role_list = ['Pypeclub'] + role_list = ['Administrator', 'Project Manager', 'Pypeclub'] db_con = DbConnector( mongo_url=os.environ["AVALON_MONGO"],