- Delete NetworkConnectivity.swift with problematic NWPathMonitor - Remove serverDidBecomeAvailable notification - Remove unused startAutoSync from OfflineSyncManager - Server check now only on app start via AppViewModel
17 lines
639 B
Swift
17 lines
639 B
Swift
import Foundation
|
|
|
|
extension Notification.Name {
|
|
// MARK: - App Lifecycle
|
|
static let settingsChanged = Notification.Name("SettingsChanged")
|
|
static let setupStatusChanged = Notification.Name("SetupStatusChanged")
|
|
|
|
// MARK: - Authentication
|
|
static let unauthorizedAPIResponse = Notification.Name("UnauthorizedAPIResponse")
|
|
|
|
// MARK: - UI Interactions
|
|
static let dismissKeyboard = Notification.Name("DismissKeyboard")
|
|
static let addBookmarkFromShare = Notification.Name("AddBookmarkFromShare")
|
|
|
|
// MARK: - User Preferences
|
|
static let cardLayoutChanged = Notification.Name("cardLayoutChanged")
|
|
} |