Add notification profile id for backupsv2.

This commit is contained in:
Cody Henthorne
2025-04-21 16:43:19 -04:00
parent b4a9189068
commit 4304ae2a96
21 changed files with 114 additions and 10 deletions

View File

@@ -41,7 +41,8 @@ class NotificationProfilesTest {
"first",
"",
createdAt = 1000L,
schedule = NotificationProfileSchedule(1)
schedule = NotificationProfileSchedule(1),
notificationProfileId = NotificationProfileId.generate()
)
private val second = NotificationProfile(
@@ -49,7 +50,8 @@ class NotificationProfilesTest {
"second",
"",
createdAt = 2000L,
schedule = NotificationProfileSchedule(2)
schedule = NotificationProfileSchedule(2),
notificationProfileId = NotificationProfileId.generate()
)
private lateinit var notificationProfileValues: NotificationProfileValues