mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
initial commit of SyncServerSites
This commit is contained in:
parent
55b86c9d2d
commit
1644247ad4
2 changed files with 7 additions and 1 deletions
|
|
@ -112,7 +112,8 @@ from .enum_entity import (
|
|||
from .list_entity import ListEntity
|
||||
from .dict_immutable_keys_entity import (
|
||||
DictImmutableKeysEntity,
|
||||
RootsDictEntity
|
||||
RootsDictEntity,
|
||||
SyncServerSites
|
||||
)
|
||||
from .dict_mutable_keys_entity import DictMutableKeysEntity
|
||||
from .dict_conditional import (
|
||||
|
|
@ -173,6 +174,7 @@ __all__ = (
|
|||
|
||||
"DictImmutableKeysEntity",
|
||||
"RootsDictEntity",
|
||||
"SyncServerSites",
|
||||
|
||||
"DictMutableKeysEntity",
|
||||
|
||||
|
|
|
|||
|
|
@ -727,3 +727,7 @@ class RootsDictEntity(DictImmutableKeysEntity):
|
|||
self._project_value = value
|
||||
self._project_override_metadata = {}
|
||||
self.had_project_override = value is not NOT_SET
|
||||
|
||||
|
||||
class SyncServerSites(DictImmutableKeysEntity):
|
||||
schema_types = ["sync-server-sites"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue