Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c709ba

Browse files
committed
invite and template
1 parent 48867ff commit 9c709ba

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

viewer/packages/lowcoder/src/app.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import {
88
DATASOURCE_CREATE_URL,
99
DATASOURCE_EDIT_URL,
1010
DATASOURCE_URL,
11-
IMPORT_APP_FROM_TEMPLATE_URL,
12-
INVITE_LANDING_URL,
1311
QUERY_LIBRARY_URL,
1412
ADMIN_APP_URL,
1513
} from "constants/routesURL";
@@ -250,10 +248,6 @@ class AppIndex extends React.Component<AppIndexProps, any> {
250248
path={APP_EDITOR_URL}
251249
component={LazyAppEditor}
252250
/>
253-
<LazyRoute
254-
path={INVITE_LANDING_URL}
255-
component={LazyInviteLanding}
256-
/>
257251
<LazyRoute
258252
path={`/playground/:name/:dsl`}
259253
component={LazyComponentPlayground}

viewer/packages/lowcoder/src/constants/routesURL.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ export const DATASOURCE_URL = `/datasource`;
1313
export const DATASOURCE_CREATE_URL = `${DATASOURCE_URL}/new/:datasourceType`;
1414
export const DATASOURCE_EDIT_URL = `${DATASOURCE_URL}/:datasourceId`;
1515
export const QUERY_LIBRARY_URL = `/query-library`;
16-
export const IMPORT_APP_FROM_TEMPLATE_URL = `${ALL_APPLICATIONS_URL}/template-import/:templateId`;
1716
export const APP_EDITOR_URL = `${ALL_APPLICATIONS_URL}/:applicationId/:viewMode/:appPageId?`;
1817

19-
export const INVITE_LANDING_URL = "/invite/:invitationId";
2018

2119
export const APPLICATION_VIEW_URL = (appId: string, viewMode: AppViewMode) =>
2220
`${ALL_APPLICATIONS_URL}/${appId}/${viewMode}`;

0 commit comments

Comments
 (0)