`refactor: Update endpoint in provision.py` (#316)
taylor_socfortress committed
Oct 2, 2024 at 08:24 UTC
1ab22db5bfe277c50b59401907d8c497651c4823
1 file changed
+1
-1
backend/app/integrations/office365/services/provision.py
+1
-1
@@ -72,7 +72,7 @@ async def get_wazuh_configuration(file_name: str) -> str:
72
Returns:
73
str: The Wazuh configuration data.
74
"""
75
- endpoint = "manager/configuration"
75
+ endpoint = "/manager/configuration"
76
params = {"raw": True}
77
response = await send_get_request(endpoint=endpoint, params=params)
78
config_data = response["data"]