Jump to content

Mani Varma

Members
  • Posts

    12
  • Joined

  • Last visited

  • Days Won

    3

Mani Varma last won the day on April 7 2022

Mani Varma had the most liked content!

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Mani Varma's Achievements

  1. Hi, I'm having trouble filtering enumerated custom attributes in Overview Dashboard. Text or number type seems to filter just fine, but enumerated type returns "Nothing found". The filter is set against all Projects, where a user will be tagged to a custom attribute. Menu/value are set as user1/value1/user2/value2 in new lines. Is it supposed to work? or is there any possible workaround to query it in the Project filter. Thanks
  2. Is there anyway to restore an User Account that got accidentally removed/deleted, through API or other means?
  3. Yes, they have access to the Project. The account role is set to Team Lead with access to all Open Projects, and the Project is not set to Private either. Tested out using another object criteria ReviewSessionInvitee, user = session.query("ReviewSessionInvitee where email is '{0}'".format(user_email)).first() This returned nothing either. Does having an email set, removing it and then adding again cause this issue?
  4. Thanks for the reply. Well for Project permissions, everything is turned on except for Delete project. I think Client Review session require an email address without which it simply says - Oops, could not find anything here! So a workaround to join the review session without email would help as well.
  5. Hi, I'm trying to add an Email address to a User but ftrack displays an error that another User or Collaborator with some User ID has the same username or email. There is no User with that specific email address so it might be listed under Collaborator. Searched the ID through Python API but there were no results, user = session.query("User where id is '{0}'".format(user_id)).one() The specific user account has trouble opening Client Review session and my guess was due to lack of an email address which I have trouble adding. Need suggestions and is there any way to search for Collaborator?
  6. Found it in one of the documentation and it worked. I was trying to subscribe to ftrack.widget.update before which didn't work out as expected. https://help.ftrack.com/en/articles/1040449-custom-widgets window.addEventListener('message', function (event) { var content = event.data; console.debug('Got ' + content.topic + ' event.', content); if (content.topic === 'ftrack.widget.load') { //Store credentials for later. window.credentials = content.data.credentials; } else if (content.topic === 'ftrack.widget.update') { // Load new data. } }, false);
  7. Mani Varma

    Refresh Widget

    Hi, Recently I was testing out ways to write custom dashboard widgets for projects and it is working great. A slight problem being it doesn't refresh automatically like the other inbuilt widgets. I end up having to refreshing the entire page each time an entity is selected or when switching to another project for the widget to recalculate. Any suggestions to handle the automatic update? Options to let the widget know a different entity has been selected.
  8. Hi, I'm looking for a way to set location in JavaScript API when creating new component using session.createComponent(), it's using ftrack.server by default. While writing code using Python API, the method allowed using auto to use the location set on priority. Is there a way to set location like that during createComponent()? asset_version.create_component(component, data={"name": filename}, location="auto")
  9. Hi @Lorenzo Angeli We are using Maya 2018 which has Python 2.7.11. I switched to Connect 1.1.2 and the problem still persists. This issue didn't happen at first but has grown in numbers, ftrack never loads once the error shows up for the first time.
  10. Hello, Recently we've been facing issues with the ftrack plugin not loading up along with Maya instead an error message on Maya Console "SSL: CERTIFICATE_VERIFY_FAILED". After this the plugin never loads on the specific machine, it's the same error all the time. Adding the error message below, is there anyway to get past this?
×
×
  • Create New...