Skip to content

Commit

Permalink
Merge branch 'feat/compliance' into deploy/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
GareArc committed Jan 26, 2025
2 parents 25d9bab + 981e497 commit 11270ac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions api/services/billing_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
from typing import Literal, Optional

import httpx
from tenacity import retry, retry_if_exception_type, stop_before_delay, wait_fixed
from tenacity import (retry, retry_if_exception_type, stop_before_delay,
wait_fixed)

from extensions.ext_database import db
from models.account import TenantAccountJoin, TenantAccountRole
Expand Down Expand Up @@ -95,7 +96,7 @@ def update_account_deletion_feedback(cls, email: str, feedback: str):
@classmethod
def list_compliance_files(cls, tenant_id: str, account_id: str):
params = {"account_id": account_id, "tenant_id": tenant_id}
return cls._send_request("GET", "/compliances/list", params=params)
return cls._send_request("GET", "/compliance/list", params=params)

@classmethod
def get_compliance_download_link(
Expand Down

0 comments on commit 11270ac

Please sign in to comment.