feat: переименование доменной области

This commit is contained in:
Artem Tsyrulnikov
2025-12-14 12:21:35 +03:00
parent 3cb3da4dbe
commit f3e09a08eb
75 changed files with 1624 additions and 1417 deletions

View File

@@ -16,16 +16,16 @@ async def get_creatives_analytics(
) -> dto.GetCreativesAnalyticsOutput:
await self.ensure_workspace_access(input.workspace_id, input.user_id)
if input.target_channel_id:
target_channel = await self.database.get_target_channel(input.workspace_id, input.target_channel_id)
if not target_channel:
raise domain.TargetChannelNotFound(input.target_channel_id)
if input.project_id:
project = await self.database.get_project(input.workspace_id, input.project_id)
if not project:
raise domain.ProjectNotFound(input.project_id)
creatives = await self.database.get_workspace_creatives(
input.workspace_id, input.target_channel_id, include_archived=False
input.workspace_id, input.project_id, include_archived=False
)
placements = await self.database.get_workspace_placements(
input.workspace_id, input.target_channel_id, include_archived=False
input.workspace_id, input.project_id, include_archived=False
)
@dataclass