mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Swift
		
	
		
		
			
		
	
	
			27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Swift
		
	
| 
											5 years ago
										 | 
 | ||
|  | public extension Notification.Name { | ||
|  | 
 | ||
|  |     // State changes | ||
| 
											5 years ago
										 |     static let blockedContactsUpdated = Notification.Name("blockedContactsUpdated") | ||
|  |     static let contactOnlineStatusChanged = Notification.Name("contactOnlineStatusChanged") | ||
|  |     static let threadDeleted = Notification.Name("threadDeleted") | ||
|  |     static let threadSessionRestoreDevicesChanged = Notification.Name("threadSessionRestoreDevicesChanged") | ||
| 
											5 years ago
										 |     // Onboarding | ||
| 
											5 years ago
										 |     static let seedViewed = Notification.Name("seedViewed") | ||
| 
											5 years ago
										 |     // Interaction | ||
| 
											5 years ago
										 |     static let dataNukeRequested = Notification.Name("dataNukeRequested") | ||
| 
											5 years ago
										 | } | ||
|  | 
 | ||
|  | @objc public extension NSNotification { | ||
|  | 
 | ||
|  |     // State changes | ||
| 
											5 years ago
										 |     @objc static let blockedContactsUpdated = Notification.Name.blockedContactsUpdated.rawValue as NSString | ||
|  |     @objc static let contactOnlineStatusChanged = Notification.Name.contactOnlineStatusChanged.rawValue as NSString | ||
|  |     @objc static let threadDeleted = Notification.Name.threadDeleted.rawValue as NSString | ||
|  |     @objc static let threadSessionRestoreDevicesChanged = Notification.Name.threadSessionRestoreDevicesChanged.rawValue as NSString | ||
| 
											5 years ago
										 |     // Onboarding | ||
| 
											5 years ago
										 |     @objc static let seedViewed = Notification.Name.seedViewed.rawValue as NSString | ||
| 
											5 years ago
										 |     // Interaction | ||
| 
											5 years ago
										 |     @objc static let dataNukeRequested = Notification.Name.dataNukeRequested.rawValue as NSString | ||
| 
											5 years ago
										 | } |