File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
WooCommerce.xcdatamodeld/Model 120.xcdatamodel
Yosemite/Yosemite/Model/Storage Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2219,7 +2219,8 @@ extension Networking.Site {
22192219 visibility: . fake( ) ,
22202220 canBlaze: . fake( ) ,
22212221 isAdmin: . fake( ) ,
2222- wasEcommerceTrial: . fake( )
2222+ wasEcommerceTrial: . fake( ) ,
2223+ hasSSOEnabled: . fake( )
22232224 )
22242225 }
22252226}
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ extension Site {
2828 @NSManaged public var isAdmin : Bool
2929 @NSManaged public var canBlaze : Bool
3030 @NSManaged public var wasEcommerceTrial : Bool
31+ @NSManaged public var hasSSOEnabled : Bool
3132
3233}
3334
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" standalone =" yes" ?>
2- <model type =" com.apple.IDECoreDataModeler.DataModel" documentVersion =" 1.0" lastSavedToolsVersion =" 23605" systemVersion =" 23H124 " minimumToolsVersion =" Automatic" sourceLanguage =" Swift" userDefinedModelVersionIdentifier =" " >
2+ <model type =" com.apple.IDECoreDataModeler.DataModel" documentVersion =" 1.0" lastSavedToolsVersion =" 23605" systemVersion =" 24C101 " minimumToolsVersion =" Automatic" sourceLanguage =" Swift" userDefinedModelVersionIdentifier =" " >
33 <entity name =" Account" representedClassName =" Account" syncable =" YES" >
44 <attribute name =" displayName" optional =" YES" attributeType =" String" />
55 <attribute name =" email" optional =" YES" attributeType =" String" />
843843 <attribute name =" canBlaze" attributeType =" Boolean" defaultValueString =" NO" usesScalarValueType =" YES" />
844844 <attribute name =" frameNonce" optional =" YES" attributeType =" String" />
845845 <attribute name =" gmtOffset" optional =" YES" attributeType =" Double" defaultValueString =" 0.0" usesScalarValueType =" YES" />
846+ <attribute name =" hasSSOEnabled" attributeType =" Boolean" defaultValueString =" NO" usesScalarValueType =" YES" />
846847 <attribute name =" isAdmin" attributeType =" Boolean" defaultValueString =" NO" usesScalarValueType =" YES" />
847848 <attribute name =" isAIAssitantFeatureActive" attributeType =" Boolean" defaultValueString =" NO" usesScalarValueType =" YES" />
848849 <attribute name =" isJetpackConnected" attributeType =" Boolean" defaultValueString =" NO" usesScalarValueType =" YES" />
Original file line number Diff line number Diff line change @@ -56,6 +56,6 @@ extension Storage.Site: ReadOnlyConvertible {
5656 canBlaze: canBlaze,
5757 isAdmin: isAdmin,
5858 wasEcommerceTrial: wasEcommerceTrial,
59- hasSSOEnabled: false ) // TODO
59+ hasSSOEnabled: hasSSOEnabled )
6060 }
6161}
You can’t perform that action at this time.
0 commit comments