27 lines
727 B
Swift
27 lines
727 B
Swift
//
|
|
// DataSourceFacade+Bookmark.swift
|
|
// Mastodon
|
|
//
|
|
// Created by ProtoLimit on 2022/07/29.
|
|
//
|
|
|
|
import UIKit
|
|
import CoreData
|
|
import CoreDataStack
|
|
import MastodonCore
|
|
|
|
extension DataSourceFacade {
|
|
public static func responseToStatusBookmarkAction(
|
|
provider: UIViewController & NeedsDependency & AuthContextProvider,
|
|
status: ManagedObjectRecord<Status>
|
|
) async throws {
|
|
let selectionFeedbackGenerator = await UISelectionFeedbackGenerator()
|
|
await selectionFeedbackGenerator.selectionChanged()
|
|
|
|
_ = try await provider.context.apiService.bookmark(
|
|
record: status,
|
|
authenticationBox: provider.authContext.mastodonAuthenticationBox
|
|
)
|
|
}
|
|
}
|