Locally hide notification text when locked

This commit is contained in:
Peter
2019-10-29 23:24:39 +04:00
parent 9e5db9c4dc
commit 1e437ee1a8
4 changed files with 83 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
import Foundation
public struct NotificationsPresentationData: Codable, Equatable {
public var applicationLockedMessageString: String
public init(applicationLockedMessageString: String) {
self.applicationLockedMessageString = applicationLockedMessageString
}
}
public func notificationsPresentationDataPath(rootPath: String) -> String {
return rootPath + "/notificationsPresentationData.json"
}