Debug configuration
| 174 | |
| 175 | |
| 176 | class DebugConfig(BaseModel): |
| 177 | """Debug configuration""" |
| 178 | |
| 179 | id: int = 1 |
| 180 | enabled: bool = False |
| 181 | log_requests: bool = True |
| 182 | log_responses: bool = True |
| 183 | mask_token: bool = True |
| 184 | created_at: Optional[datetime] = None |
| 185 | updated_at: Optional[datetime] = None |
| 186 | |
| 187 | |
| 188 | class CaptchaConfig(BaseModel): |