NetNewsWire/Shared/SmartFeeds/TodayFeedDelegate.swift

29 lines
694 B
Swift
Raw Normal View History

//
// TodayFeedDelegate.swift
2018-08-29 07:18:24 +02:00
// NetNewsWire
//
// Created by Brent Simmons on 11/19/17.
// Copyright © 2017 Ranchero Software. All rights reserved.
//
import Foundation
import RSCore
import Articles
import Account
struct TodayFeedDelegate: SmartFeedDelegate {
2019-11-15 13:19:14 +01:00
var feedID: FeedIdentifier? {
return FeedIdentifier.smartFeed(String(describing: TodayFeedDelegate.self))
}
let nameForDisplay = NSLocalizedString("Today", comment: "Today pseudo-feed title")
let fetchType = FetchType.today
var smallIcon: IconImage? = AppAssets.todayFeedImage
2019-12-15 02:01:34 +01:00
func fetchUnreadCount(for account: Account, completion: @escaping (Int) -> Void) {
account.fetchUnreadCountForToday(completion)
}
}