1 implementation of GetNotifications
Aspire.Dashboard (1)
Model\NotificationService.cs (1)
30public IReadOnlyList<NotificationMessage> GetNotifications()
8 references to GetNotifications
Aspire.Dashboard (2)
Components\Dialogs\NotificationsDialog.razor.cs (2)
22_notifications = NotificationService.GetNotifications(); 31_notifications = NotificationService.GetNotifications();
Aspire.Dashboard.Tests (6)
Model\DashboardCommandExecutorTests.cs (6)
45var startingNotification = Assert.Single(notificationService.GetNotifications()); 53var cancelingNotification = Assert.Single(notificationService.GetNotifications()); 65var canceledNotification = Assert.Single(notificationService.GetNotifications()); 90var startingNotification = Assert.Single(notificationService.GetNotifications()); 100var cancelingNotification = Assert.Single(notificationService.GetNotifications()); 141var notification = Assert.Single(notificationService.GetNotifications());