mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-26 15:07:39 +00:00
21 lines
505 B
Swift
21 lines
505 B
Swift
import Foundation
|
|
|
|
/// Centralized notification names
|
|
extension Notification.Name {
|
|
// MARK: - Settings
|
|
|
|
static let showSettings = Notification.Name("sh.vibetunnel.vibetunnel.showSettings")
|
|
|
|
// MARK: - Updates
|
|
|
|
static let checkForUpdates = Notification.Name("checkForUpdates")
|
|
|
|
// MARK: - Welcome
|
|
|
|
static let showWelcomeScreen = Notification.Name("showWelcomeScreen")
|
|
}
|
|
|
|
/// Notification categories
|
|
enum NotificationCategories {
|
|
static let updateReminder = "UPDATE_REMINDER"
|
|
}
|