1 write to Entry
Aspire.Dashboard (1)
Model\NotificationService.cs (1)
39result[i] = new NotificationMessage { Id = item.Id, Entry = item.Entry };
10 references to Entry
Aspire.Dashboard.Tests (10)
Model\DashboardCommandExecutorTests.cs (10)
47Assert.Equal("Localized:ResourceCommandCancel", startingNotification.Entry.PrimaryAction?.Text); 50await startingNotification.Entry.PrimaryAction!.OnClick(new ServiceCollection().BuildServiceProvider()); 54Assert.Equal("Localized:ResourceCommandCanceling", cancelingNotification.Entry.Title); 55Assert.Null(cancelingNotification.Entry.PrimaryAction); 66Assert.Equal("Localized:ResourceCommandCanceled", canceledNotification.Entry.Title); 67Assert.Null(canceledNotification.Entry.PrimaryAction); 91var cancelAction = startingNotification.Entry.PrimaryAction; 101Assert.Equal("Localized:ResourceCommandCanceling", cancelingNotification.Entry.Title); 142Assert.Equal("Localized:ResourceCommandSuccess", notification.Entry.Title); 143Assert.Null(notification.Entry.PrimaryAction);