mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-03 17:35:19 +01:00
* copied addons from 'ayon-addon-settings' * added AE, photoshop and harmony addon * moved openpype to subfolder * cleanup repository files * updated create package script and README.md * formatting fixes * added cli flags to be able keep server structure * print progress and output dir * another formatting fixes
9 lines
385 B
Python
9 lines
385 B
Python
from pydantic import Field
|
|
from ayon_server.settings import BaseSettingsModel
|
|
|
|
|
|
class TimersManagerSettings(BaseSettingsModel):
|
|
auto_stop: bool = Field(True, title="Auto stop timer")
|
|
full_time: int = Field(15, title="Max idle time")
|
|
message_time: float = Field(0.5, title="When dialog will show")
|
|
disregard_publishing: bool = Field(False, title="Disregard publishing")
|