2021-04-01 08:39:15 +02:00
|
|
|
//
|
|
|
|
// CachedProfileViewModel.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by MainasuK Cirno on 2021-3-31.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import CoreDataStack
|
|
|
|
|
|
|
|
final class CachedProfileViewModel: ProfileViewModel {
|
|
|
|
|
2021-04-13 13:46:42 +02:00
|
|
|
init(context: AppContext, mastodonUser: MastodonUser) {
|
|
|
|
super.init(context: context, optionalMastodonUser: mastodonUser)
|
2022-03-18 17:30:00 +01:00
|
|
|
|
|
|
|
logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): [Profile] user[\(mastodonUser.id)] profile: \(mastodonUser.acctWithDomain)")
|
2021-04-01 08:39:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|