List ftrack project on AYON server #195
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changelog Description
Implemented base of simple async ftrack session to collect ftrack projects using server, api key and username from ftrack settings.
Additional review information
Implemented ftrack session is using
httpx
which is available on server. The list of ftrack projects is available under endpoint/ftrackProjects
.Notes
I don't know what error code I should return when it is not possible to create ftrack connection, e.g. because missing/invalid ftrack url or missing/invalid credentials. Right now it does return 200 with success and error information in response.
Testing notes:
GET
{AYON server url}/addons/ftrack/1.3.3+dev/ftrackProjects
e.g. usingayon_api
. If settings are set in dev or staging variant, then also add?variant={variant}
to url.Resolves #188