Skip to content

Commit

Permalink
fix: http repo storage definition
Browse files Browse the repository at this point in the history
Storage definition is now duplicated between Remote and Http repo types. This cleans up the migration path.
  • Loading branch information
isc-tleavitt committed Nov 5, 2024
1 parent e2c741b commit 3f68e49
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/cls/IPM/Repo/Http/Definition.cls
Original file line number Diff line number Diff line change
Expand Up @@ -142,25 +142,25 @@ Method GetPublishingManager(ByRef status) [ Abstract ]

Storage Default
{
<Data name="HttpRepoDefinitionDefaultData">
<Subscript>"Definition"</Subscript>
<Value name="1">
<Value>URL</Value>
</Value>
<Data name="RemoteRepoDefinitionDefaultData">
<Subscript>"RemoteRepoDefinition"</Subscript>
<Value name="2">
<Value>Username</Value>
</Value>
<Value name="3">
<Value>Password</Value>
</Value>
<Value name="4">
<Value>Token</Value>
<Value>URL</Value>
</Value>
<Value name="5">
<Value>Token</Value>
</Value>
<Value name="6">
<Value>DeploymentEnabled</Value>
</Value>
</Data>
<DefaultData>HttpRepoDefinitionDefaultData</DefaultData>
<DefaultData>RemoteRepoDefinitionDefaultData</DefaultData>
<Type>%Storage.Persistent</Type>
}

Expand Down

0 comments on commit 3f68e49

Please sign in to comment.