Make vapidKey in InstanceApp model optional (#135)

This commit is contained in:
Renan Guilherme 2023-01-20 01:42:18 -04:00 committed by GitHub
parent 0f45a8d1ff
commit 3b0d26bab2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,5 +7,5 @@ public struct InstanceApp: Codable, Identifiable {
public let redirectUri: String
public let clientId: String
public let clientSecret: String
public let vapidKey: String
public let vapidKey: String?
}