ReadKeep/readeck/UI/Utils/NotificationNames.swift
Ilyas Hallak e5334d456d refactor: Remove NWPathMonitor auto-sync, keep only on-demand server checks
- Delete NetworkConnectivity.swift with problematic NWPathMonitor
- Remove serverDidBecomeAvailable notification
- Remove unused startAutoSync from OfflineSyncManager
- Server check now only on app start via AppViewModel
2025-10-19 10:47:19 +02:00

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")
}