forked from Github-Mirrors/canaille
8 lines
121 B
Python
8 lines
121 B
Python
![]() |
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class SCIMSettings(BaseModel):
|
||
|
"""SCIM settings."""
|
||
|
|
||
|
ENABLE_SERVER: bool = True
|