| 13 | |
| 14 | @dataclass |
| 15 | class SecurityConfigResult: |
| 16 | config: dict[str, Any] |
| 17 | changed: bool = False |
| 18 | password_hashed: bool = False |
| 19 | jwt_secret_rotated: bool = False |
| 20 | setup_required: bool = False |
| 21 | |
| 22 | |
| 23 | def generate_jwt_secret() -> str: |
no outgoing calls
no test coverage detected