fix: update docs endpoint test and add Zammad settings metadata

- Update test_docs_endpoint to use new /admin/api-docs path
- Add SETTING_METADATA entries for zammad_url, zammad_chat_enabled,
  zammad_chat_id, zammad_form_enabled, support_email

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-08 17:37:29 +00:00
parent af3eed4040
commit 351d6f3f4f
2 changed files with 42 additions and 1 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ class TestHealthEndpoints:
def test_docs_endpoint(self, client: TestClient):
"""Test that API documentation is accessible."""
response = client.get("/docs")
response = client.get("/admin/api-docs")
assert response.status_code == 200
assert "swagger" in response.text.lower() or "openapi" in response.text.lower()