remove community registry from FE defaults (#1988)

* remove community registry from FE defaults

* fix: Changes requested from matt (#1989)

* fix: Changes requested from matt

* chore: Remove more of the migration for the community

Co-authored-by: J M <2364004+Blu-J@users.noreply.github.com>
This commit is contained in:
Matt Hill
2022-11-28 19:20:07 -07:00
committed by Aiden McClelland
parent 3fe43a5b57
commit c52cf1fc3f
5 changed files with 3 additions and 43 deletions

View File

@@ -26,7 +26,6 @@
<ul class="spaced-list">
<li>x86_64 architecture compatibility</li>
<li>Kiosk mode - use your Embassy with monitor, keyboard, and mouse</li>
<li>Community Registry now included in Marketplace</li>
<li>
"Updates" tab - view all service updates from all registries in one place
</li>

View File

@@ -43,7 +43,7 @@ export class MarketplaceService implements AbstractMarketplaceService {
const { start9, community } = this.config.marketplace
let arr = [
toStoreIdentity(start9, hosts[start9]),
toStoreIdentity(community, hosts[community]),
// toStoreIdentity(community, hosts[community]),
]
return arr.concat(

View File

@@ -26,7 +26,7 @@ export interface UIMarketplaceData {
'selected-url': string
'known-hosts': {
'https://registry.start9.com/': UIStore
'https://community-registry.start9.com/': UIStore
// 'https://community-registry.start9.com/': UIStore
[url: string]: UIStore
}
}