mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
fix updated by access
This commit is contained in:
parent
bcdecef227
commit
e09a363546
2 changed files with 5 additions and 1 deletions
|
|
@ -233,6 +233,7 @@ class FileItem:
|
|||
filename,
|
||||
modified,
|
||||
created_by=None,
|
||||
updated_by=None,
|
||||
representation_id=None,
|
||||
filepath=None,
|
||||
exists=None
|
||||
|
|
@ -241,6 +242,7 @@ class FileItem:
|
|||
self.dirpath = dirpath
|
||||
self.modified = modified
|
||||
self.created_by = created_by
|
||||
self.updated_by = updated_by
|
||||
self.representation_id = representation_id
|
||||
self._filepath = filepath
|
||||
self._exists = exists
|
||||
|
|
|
|||
|
|
@ -199,7 +199,8 @@ class WorkareaModel:
|
|||
workdir,
|
||||
filename,
|
||||
modified,
|
||||
workfile_info.created_by
|
||||
workfile_info.created_by,
|
||||
workfile_info.updated_by,
|
||||
))
|
||||
return items
|
||||
|
||||
|
|
@ -675,6 +676,7 @@ class PublishWorkfilesModel:
|
|||
filename,
|
||||
created_at.float_timestamp,
|
||||
author,
|
||||
None,
|
||||
repre_entity["id"]
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue