32 lines
749 B
Swift
32 lines
749 B
Swift
//
|
|
// TodayFeedDelegate.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 11/19/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import RSCore
|
|
import Articles
|
|
import ArticlesDatabase
|
|
import Account
|
|
|
|
struct TodayFeedDelegate: SmartFeedDelegate {
|
|
|
|
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? {
|
|
return AppAssets.todayFeedImage
|
|
}
|
|
|
|
func fetchUnreadCount(for account: Account, completion: @escaping SingleUnreadCountCompletionBlock) {
|
|
account.fetchUnreadCountForToday(completion)
|
|
}
|
|
}
|
|
|