PM-14620: Remove unused accessSecretsManager property to fix JSON decoding errors (backport of #1116) (#1129)

This commit is contained in:
Matt Czech 2024-11-12 09:27:07 -06:00 committed by GitHub
parent e837a612cb
commit b54610f98a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 5 deletions

View File

@ -4,7 +4,6 @@ import Foundation
extension ProfileOrganizationResponseModel {
static func fixture(
accessSecretsManager: Bool = false,
enabled: Bool = true,
familySponsorshipAvailable: Bool = false,
familySponsorshipFriendlyName: String? = nil,
@ -49,7 +48,6 @@ extension ProfileOrganizationResponseModel {
usersGetPremium: Bool = false
) -> ProfileOrganizationResponseModel {
self.init(
accessSecretsManager: accessSecretsManager,
enabled: enabled,
familySponsorshipAvailable: familySponsorshipAvailable,
familySponsorshipFriendlyName: familySponsorshipFriendlyName,

View File

@ -5,9 +5,6 @@ import Foundation
struct ProfileOrganizationResponseModel: Codable, Equatable {
// MARK: Properties
/// Whether the user can access secrets manager.
let accessSecretsManager: Bool
/// Whether the profile organization is enabled.
let enabled: Bool