File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed
viewer/packages/lowcoder/src Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 8
8
DATASOURCE_CREATE_URL ,
9
9
DATASOURCE_EDIT_URL ,
10
10
DATASOURCE_URL ,
11
- IMPORT_APP_FROM_TEMPLATE_URL ,
12
- INVITE_LANDING_URL ,
13
11
QUERY_LIBRARY_URL ,
14
12
ADMIN_APP_URL ,
15
13
} from "constants/routesURL" ;
@@ -250,10 +248,6 @@ class AppIndex extends React.Component<AppIndexProps, any> {
250
248
path = { APP_EDITOR_URL }
251
249
component = { LazyAppEditor }
252
250
/>
253
- < LazyRoute
254
- path = { INVITE_LANDING_URL }
255
- component = { LazyInviteLanding }
256
- />
257
251
< LazyRoute
258
252
path = { `/playground/:name/:dsl` }
259
253
component = { LazyComponentPlayground }
Original file line number Diff line number Diff line change @@ -13,10 +13,8 @@ export const DATASOURCE_URL = `/datasource`;
13
13
export const DATASOURCE_CREATE_URL = `${ DATASOURCE_URL } /new/:datasourceType` ;
14
14
export const DATASOURCE_EDIT_URL = `${ DATASOURCE_URL } /:datasourceId` ;
15
15
export const QUERY_LIBRARY_URL = `/query-library` ;
16
- export const IMPORT_APP_FROM_TEMPLATE_URL = `${ ALL_APPLICATIONS_URL } /template-import/:templateId` ;
17
16
export const APP_EDITOR_URL = `${ ALL_APPLICATIONS_URL } /:applicationId/:viewMode/:appPageId?` ;
18
17
19
- export const INVITE_LANDING_URL = "/invite/:invitationId" ;
20
18
21
19
export const APPLICATION_VIEW_URL = ( appId : string , viewMode : AppViewMode ) =>
22
20
`${ ALL_APPLICATIONS_URL } /${ appId } /${ viewMode } ` ;
You can’t perform that action at this time.
0 commit comments