UnmuteThreadNotify.swift (490B)
1 // 2 // UnmuteThreadNotify.swift 3 // damus 4 // 5 // Created by William Casarin on 2023-07-30. 6 // 7 8 import Foundation 9 10 struct UnmuteThreadNotify: Notify { 11 typealias Payload = NostrEvent 12 var payload: Payload 13 } 14 15 extension NotifyHandler { 16 static var unmute_thread: NotifyHandler<UnmuteThreadNotify> { 17 .init() 18 } 19 } 20 21 extension Notifications { 22 static func unmute_thread(_ note: NostrEvent) -> Notifications<UnmuteThreadNotify> { 23 .init(.init(payload: note)) 24 } 25 } 26