mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
* updated nuke settings * added addon version to zip filename * fix Pattern type hint * added ignored subdirs for openpype * added titles to addons * type hint fix - again * modified settings conversion * updated aftereffects settings * updated blender settings * updated clockify settings * updated core settings * updated deadline settings * updated harmo settings * updated kistsu settings * updated maya settings * updated muster settings * updated royal render settings * updated timers manager settings * updated traypublisher settings * implemented conversion of rr paths * formatting fix
25 lines
581 B
Python
25 lines
581 B
Python
from pydantic import Field
|
|
from ayon_server.settings import BaseSettingsModel
|
|
|
|
|
|
class TimersManagerSettings(BaseSettingsModel):
|
|
auto_stop: bool = Field(
|
|
True,
|
|
title="Auto stop timer",
|
|
scope=["studio"],
|
|
)
|
|
full_time: int = Field(
|
|
15,
|
|
title="Max idle time",
|
|
scope=["studio"],
|
|
)
|
|
message_time: float = Field(
|
|
0.5,
|
|
title="When dialog will show",
|
|
scope=["studio"],
|
|
)
|
|
disregard_publishing: bool = Field(
|
|
False,
|
|
title="Disregard publishing",
|
|
scope=["studio"],
|
|
)
|