Files
core/tests/components/paperless_ngx/const.py
Florian von Garrel c335b5b37c Add verify ssl option to paperless-ngx integration (#146802)
* add verify ssl config option

* Refactoring

* Use .get() with default value instead of migration

* Reconfigure fix

* minor changes
2025-06-16 14:31:22 +02:00

18 lines
427 B
Python

"""Constants for the Paperless NGX integration tests."""
from homeassistant.const import CONF_API_KEY, CONF_URL, CONF_VERIFY_SSL
USER_INPUT_ONE = {
CONF_URL: "https://192.168.69.16:8000",
CONF_API_KEY: "12345678",
CONF_VERIFY_SSL: True,
}
USER_INPUT_TWO = {
CONF_URL: "https://paperless.example.de",
CONF_API_KEY: "87654321",
CONF_VERIFY_SSL: True,
}
USER_INPUT_REAUTH = {CONF_API_KEY: "192837465"}