update: overhauled firmware ui. Added public flash page.
This commit is contained in:
10
backend/settings/public_features_models.py
Normal file
10
backend/settings/public_features_models.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from pydantic import BaseModel
|
||||
from typing import Optional
|
||||
|
||||
|
||||
class PublicFeaturesSettings(BaseModel):
|
||||
cloudflash_enabled: bool = False
|
||||
|
||||
|
||||
class PublicFeaturesSettingsUpdate(BaseModel):
|
||||
cloudflash_enabled: Optional[bool] = None
|
||||
Reference in New Issue
Block a user