Skip to content

Commit

Permalink
Merge branch 'release/v5.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Valandur committed Aug 23, 2018
2 parents e4f7db5 + d83b15c commit d8e02f5
Show file tree
Hide file tree
Showing 9 changed files with 4,153 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webapi-admin-panel",
"version": "5.2.1",
"version": "5.3.0",
"homepage": ".",
"proxy": "http://localhost:8080/",
"devDependencies": {
Expand Down
18 changes: 18 additions & 0 deletions src/containers/Full/Views.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ const UMItems = load(() =>
const WebBooksBooks = load(() =>
import('../../views/Integrations/WebBooks/Books')
);
const VShopsShops = load(() =>
import('../../views/Integrations/VillagerShops/Shops')
);

export const views: Array<ViewDefinition> = [
{
Expand Down Expand Up @@ -251,6 +254,21 @@ export const views: Array<ViewDefinition> = [
}
]
},
{
title: 'VShops',
path: '/vshop',
perms: ['vshop'],
servlets: ['/vshop'],
views: [
{
title: 'VShopShops',
path: '/vshop/shop',
icon: 'shop',
perms: ['vshop', 'shop'],
component: VShopsShops
}
]
},
{
title: 'WebBooks',
path: '/web-books',
Expand Down
Loading

0 comments on commit d8e02f5

Please sign in to comment.