mirror of
https://github.com/immich-app/immich.git
synced 2025-06-04 14:17:29 -04:00
22 lines
500 B
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")
|
|
}
|
|
|
|
}
|
|
|