We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25fd603 commit 405bf0cCopy full SHA for 405bf0c
1 file changed
ayon_api/_api_helpers/projects.py
@@ -162,6 +162,9 @@ def get_rest_project(
162
if response.status != 200:
163
return None
164
project = response.data
165
+ attrib = project["attrib"]
166
+ for attr_name in self.get_attributes_for_type("project"):
167
+ attrib.setdefault(attr_name, None)
168
self._fill_project_entity_data(project)
169
return project
170
0 commit comments