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