From f925df46cac502553d6a3b12b1923e912dcf2970 Mon Sep 17 00:00:00 2001 From: Matt <85322+mattmassicotte@users.noreply.github.com> Date: Fri, 22 Nov 2024 16:03:09 -0500 Subject: [PATCH] Handy for AppCredentials to support Codable --- Sources/OAuthenticator/Models.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/OAuthenticator/Models.swift b/Sources/OAuthenticator/Models.swift index 5945b3c..cf240d5 100644 --- a/Sources/OAuthenticator/Models.swift +++ b/Sources/OAuthenticator/Models.swift @@ -45,7 +45,7 @@ public struct Login: Codable, Hashable, Sendable { } } -public struct AppCredentials: Hashable, Sendable { +public struct AppCredentials: Codable, Hashable, Sendable { public var clientId: String public var clientPassword: String public var scopes: [String]