immich/mobile/ios/Runner/BackgroundSync/BackgroundSyncAppShortcut.swift

22 lines
500 B
Swift

//
// BackgroundSyncAppShortcut.swift
// Runner
//
// Created by Encotric on 24/09/2024.
//
import AppIntents
@available(iOS 16.0, *)
struct BackgroundSyncAppShortcut: AppShortcutsProvider {
@AppShortcutsBuilder static var appShortcuts: [AppShortcut] {
AppShortcut(intent: BackgroundSyncShortcutIntent(), phrases: [
// TODO: localized title
"Upload gallery using \(.applicationName)"], systemImageName: "square.and.arrow.up.on.square")
}
}