- delete clippy.toml (too-many-arguments-threshold=20 hack) - ChannelRow/MediaItemRow/LibraryItemRow structs for from_persistence - SnapshotId/ActivityEventId/PlaybackRecordId newtypes - DomainError variants use ChannelId/UserId instead of Uuid - ActivityEvent.channel_id: Option<ChannelId> not Option<Uuid> - InMemory repos key on newtype IDs - AlgorithmicParams struct for schedule engine - update all adapters/application/presentation callers
15 lines
385 B
Rust
15 lines
385 B
Rust
use domain::models::ChannelConfigSnapshot;
|
|
use domain::DomainResult;
|
|
|
|
use super::deps::ConfigSnapshotDeps;
|
|
use super::queries::GetSnapshotQuery;
|
|
|
|
pub async fn execute(
|
|
deps: &ConfigSnapshotDeps,
|
|
query: GetSnapshotQuery,
|
|
) -> DomainResult<Option<ChannelConfigSnapshot>> {
|
|
deps.channel_query
|
|
.get_config_snapshot(query.channel_id, query.snapshot_id)
|
|
.await
|
|
}
|