2020-05-08 17:49:14 +10:00
|
|
|
//
|
|
|
|
// PushNotificationConstants.swift
|
|
|
|
// CovidSafe
|
|
|
|
//
|
|
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
struct PushNotificationConstants {
|
|
|
|
// Bluetooth Status
|
|
|
|
static let btStatusPushNotifContents = [
|
|
|
|
[
|
2020-05-26 17:10:41 +10:00
|
|
|
"contentTitle": "COVIDSafe is currently inactive",
|
|
|
|
"contentBody": "Make sure it's active before you leave home and when in public places by enabling Bluetooth®"
|
2020-05-08 17:49:14 +10:00
|
|
|
]
|
|
|
|
]
|
2020-05-18 12:43:53 +10:00
|
|
|
|
|
|
|
static let reminderPushNotifContents = [
|
|
|
|
"contentTitle": "Reminder: COVIDSafe app has not been active in the past 48 hours",
|
|
|
|
"contentBody": "Tap to open the app and keep Bluetooth enabled."
|
|
|
|
]
|
2020-05-08 17:49:14 +10:00
|
|
|
}
|