-
Notifications
You must be signed in to change notification settings - Fork 206
For #35229: Added support for 'additional_server_presets' in read req… #108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
shotgun_api3/shotgun.py
Outdated
"""Wrapper for ensure_support""" | ||
return self._ensure_support({ | ||
'version': (6, 3, 11), | ||
'label': 'project parameter' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Label needs to be updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes! Plan is to update before merging...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The string with the label says project parameter
. It should be something for the presets. Just making sure that's the bit you were planning on updating before a merge.
CR done! Minor comments only from me! |
shotgun_api3/shotgun.py
Outdated
'label': 'project parameter' | ||
}, True) | ||
|
||
def ensure_support_for_additional_server_presets(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be "additional_filter_presets".
def find(self, entity_type, filters, fields=None, order=None, | ||
filter_operator=None, limit=0, retired_only=False, page=0, | ||
include_archived_projects=True): | ||
include_archived_projects=True, additional_filter_presets=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be added to find_one as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point! Added!
…com/shotgunsoftware/python-api into 35229_add_additional_server_presets # By Neil Grey (4) and others # Via Rob Blau (2) and others * '35229_add_additional_server_presets' of https://github.com/shotgunsoftware/python-api: shotgun.py: optional extra_auth_params added to Config object For #35620 - Enable Slack notifications Bump version to v3.0.30.dev Reverts image upload default field name change. Bumping master to 3.0.29.dev Prepping for release of 3.0.28 For #35260 : Adding classmethods to SgTimezone for nested class backwards compatability, as well as docstrings to better explain the module For #35260: Refactoring scoping of sgtimezone so that dates are picklable and convertable
…uests