| 12345678910111213141516171819202122232425262728 |
- import AppIntents
- import Foundation
- @available(iOS 16.0, *) struct CancelTempPresetIntent: AppIntent {
- // Title of the action in the Shortcuts app
- static var title: LocalizedStringResource = "Cancel a temporary Preset"
- // Description of the action in the Shortcuts app
- static var description = IntentDescription("Cancel temporary preset.")
- internal var intentRequest: TempPresetsIntentRequest
- init() {
- intentRequest = TempPresetsIntentRequest()
- }
- @MainActor func perform() async throws -> some ProvidesDialog {
- do {
- try intentRequest.cancelTempTarget()
- return .result(
- dialog: IntentDialog(stringLiteral: "Temporary Target canceled")
- )
- } catch {
- throw error
- }
- }
- }
|