refactor(application): strip comments, DRY ownership check + parse_content_type

This commit is contained in:
2026-07-12 04:10:58 +02:00
parent 98a54245b1
commit 9dcd169689
62 changed files with 56 additions and 203 deletions

View File

@@ -1,11 +1,9 @@
use uuid::Uuid;
/// Generate a new schedule for a channel.
pub struct GenerateScheduleCommand {
pub channel_id: Uuid,
}
/// Delete all schedules with generation > target_generation for a channel.
pub struct DeleteSchedulesAfterCommand {
pub channel_id: Uuid,
pub target_generation: u32,