Skip to content

Commit

Permalink
fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Feb 26, 2024
1 parent 0065b43 commit 87bb2c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lemarche/utils/apis/api_brevo.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from lemarche.siaes.models import Siae
from lemarche.users.models import User
from lemarche.utils.urls import get_admin_url_object, get_share_url_object
from lemarche.utils.urls import get_object_admin_url, get_object_share_url


logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -82,8 +82,8 @@ def create_company(siae: Siae):
"contact_phone": siae.contact_phone,
"logo_url": siae.logo_url,
"geo_range": siae.geo_range,
"app_url": get_share_url_object(siae),
"admin_url": get_admin_url_object(siae),
"app_url": get_object_share_url(siae),
"admin_url": get_object_admin_url(siae),
},
)

Expand Down

0 comments on commit 87bb2c6

Please sign in to comment.