mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
This is preparation for new version of pydantic which will require to customize the field for AYON purposes and raw pydantic Field could not be used.
9 lines
227 B
Python
9 lines
227 B
Python
from ayon_server.settings import BaseSettingsModel, SettingsField
|
|
|
|
|
|
class ClockifySettings(BaseSettingsModel):
|
|
workspace_name: str = SettingsField(
|
|
"",
|
|
title="Workspace name",
|
|
scope=["studio"]
|
|
)
|