BTHLABS-0000: Fix a bug that prevented RPC-created saves from processing

This commit is contained in:
Tomek Wójcik 2025-09-18 20:40:32 +02:00
parent a0f1a4ce80
commit 7c97445155

View File

@ -2,7 +2,6 @@
from __future__ import annotations from __future__ import annotations
from bthlabs_jsonrpc_core import register_method from bthlabs_jsonrpc_core import register_method
from django import db
from django.http import HttpRequest from django.http import HttpRequest
from hotpocket_backend.apps.ui.services.workflows import CreateSaveWorkflow from hotpocket_backend.apps.ui.services.workflows import CreateSaveWorkflow
@ -11,11 +10,10 @@ from hotpocket_soa.dto.associations import AssociationOut
@register_method(method='saves.create') @register_method(method='saves.create')
def create(request: HttpRequest, url: str) -> AssociationOut: def create(request: HttpRequest, url: str) -> AssociationOut:
with db.transaction.atomic(): association = CreateSaveWorkflow().run_rpc(
association = CreateSaveWorkflow().run_rpc( request=request,
request=request, account=request.user,
account=request.user, url=url,
url=url, )
)
return association return association