Fixing liquidtestnet tests.

This commit is contained in:
softsimon
2022-02-06 18:24:15 +04:00
parent e34a3d0d41
commit ee3e77bb6c
2 changed files with 23 additions and 5 deletions

View File

@@ -455,13 +455,31 @@ if (browserWindowEnv && browserWindowEnv.BASE_MODULE === 'liquid') {
path: 'address/:id',
component: AddressComponent
},
{
path: 'asset/:id',
component: AssetComponent
},
{
path: 'assets',
component: AssetsNavComponent,
children: [
{
path: 'featured',
component: AssetsFeaturedComponent,
},
{
path: 'all',
component: AssetsComponent,
},
{
path: 'asset/:id',
component: AssetComponent
},
{
path: 'asset-group/:id',
component: AssetGroupComponent
},
{
path: '**',
redirectTo: 'featured'
}
]
},
{
path: 'docs/api/:type',