Correct deep link comments.

This commit is contained in:
Maurice Parker 2019-11-11 13:47:28 -06:00
parent 91f7da615c
commit 866988edcf
3 changed files with 5 additions and 3 deletions

View File

@ -179,7 +179,8 @@ public final class Feed: DisplayNameProvider, Renamable, UnreadCountProvider, De
account.renameFeed(self, to: newName, completion: completion)
}
// MARK: - PathIDUserInfoProvider
// MARK: - DeepLinkProvider
public var deepLinkUserInfo: [AnyHashable : Any] {
return [
DeepLinkKey.accountID.rawValue: account?.accountID ?? "",

View File

@ -33,7 +33,8 @@ public final class Folder: DisplayNameProvider, Renamable, Container, UnreadCoun
return name ?? Folder.untitledName
}
// MARK: - PathIDUserInfoProvider
// MARK: - DeepLinkProvider
public var deepLinkUserInfo: [AnyHashable : Any] {
return [
DeepLinkKey.accountID.rawValue: account?.accountID ?? "",

View File

@ -94,7 +94,7 @@ extension Article {
}
}
// MARK: PathIDUserInfoProvider
// MARK: DeepLinkProvider
extension Article: DeepLinkProvider {