From 15d761519c691282d24746c91523c834a40c1312 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Sat, 22 Aug 2026 21:47:10 +1000 Subject: [PATCH] Persist ExpiresAt when editing a Meow --- Controllers/SlidesController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Controllers/SlidesController.cs b/Controllers/SlidesController.cs index 29cf997..f606dc0 100644 --- a/Controllers/SlidesController.cs +++ b/Controllers/SlidesController.cs @@ -73,6 +73,7 @@ public class SlidesController : Controller existing.BackgroundColor = slide.BackgroundColor; existing.BackgroundImage = slide.BackgroundImage; existing.BackgroundSize = slide.BackgroundSize; + existing.ExpiresAt = slide.ExpiresAt; existing.UpdatedAt = DateTime.UtcNow; await _db.SaveChangesAsync();