IceCubesApp/Packages/Notifications/Sources/Notifications/ConsolidatedNotificationExt.swift
Thomas Ricouard 8a3c971402 Swiftformat
2023-09-16 14:15:03 +02:00

19 lines
360 B
Swift

//
// ConsolidatedNotificationExt.swift
//
//
// Created by Jérôme Danthinne on 31/01/2023.
//
import Models
extension ConsolidatedNotification {
var notificationIds: [String] { notifications.map(\.id) }
}
extension [ConsolidatedNotification] {
var notificationCount: Int {
reduce(0) { $0 + ($1.accounts.isEmpty ? 1 : $1.accounts.count) }
}
}