9 lines
294 B
Swift
9 lines
294 B
Swift
import ManagedSettings
|
|
|
|
final class ShieldActionExtension: ShieldActionDelegate {
|
|
override func handle(action: ShieldAction, for application: ApplicationToken,
|
|
completionHandler: @escaping (ShieldActionResponse) -> Void) {
|
|
completionHandler(.close)
|
|
}
|
|
}
|