fix(domain): use ChannelId type in patch_config_snapshot_label

This commit is contained in:
2026-03-17 14:27:41 +01:00
parent 1338f6bace
commit 055937fc3d

View File

@@ -94,7 +94,7 @@ pub trait ChannelRepository: Send + Sync {
async fn patch_config_snapshot_label(
&self,
channel_id: Uuid,
channel_id: ChannelId,
snapshot_id: Uuid,
label: Option<String>,
) -> DomainResult<Option<ChannelConfigSnapshot>>;