File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
viewer/packages/lowcoder/src Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,6 @@ export const THEME_DETAIL_URL = `${THEME_DETAIL}/:themeId`;
1919export const OAUTH_PROVIDER_SETTING = "/setting/oauth-provider" ;
2020export const OAUTH_PROVIDER_DETAIL = "/setting/oauth-provider/detail" ;
2121
22- export const PERMISSION_SETTING_DETAIL = `${ PERMISSION_SETTING } /:groupId` ;
23- export const ORGANIZATION_SETTING_DETAIL = `${ ORGANIZATION_SETTING } /:orgId` ;
2422export const SUBSCRIPTION_SUCCESS = `${ SUBSCRIPTION_SETTING } /success` ;
2523export const SUBSCRIPTION_ERROR = `${ SUBSCRIPTION_SETTING } /error` ;
2624export const SUBSCRIPTION_DETAIL = `${ SUBSCRIPTION_SETTING } /details/:subscriptionId/:productId` ;
Original file line number Diff line number Diff line change 11import { Route , Switch } from "react-router" ;
2- import { ORGANIZATION_SETTING , ORGANIZATION_SETTING_DETAIL } from "constants/routesURL" ;
2+ import { ORGANIZATION_SETTING } from "constants/routesURL" ;
33import { OrgList } from "./orgList" ;
44import OrgSettingContent from "./orgSettingContent" ;
55
66export const Organization = ( ) => {
77 return (
88 < Switch >
99 < Route path = { ORGANIZATION_SETTING } component = { OrgList } exact />
10- < Route path = { ORGANIZATION_SETTING_DETAIL } component = { OrgSettingContent } exact />
1110 </ Switch >
1211 ) ;
1312} ;
Original file line number Diff line number Diff line change 11import { Route , Switch } from "react-router" ;
22import PermissionList from "./permissionList" ;
33import PermissionDetail from "./permissionDetail" ;
4- import { PERMISSION_SETTING , PERMISSION_SETTING_DETAIL , SETTING_URL } from "constants/routesURL" ;
4+ import { PERMISSION_SETTING , SETTING_URL } from "constants/routesURL" ;
55
66export default ( ) => {
77 return (
88 < Switch >
99 < Route path = { [ SETTING_URL , PERMISSION_SETTING ] } component = { PermissionList } exact />
10- < Route path = { PERMISSION_SETTING_DETAIL } component = { PermissionDetail } />
1110 </ Switch >
1211 ) ;
1312} ;
You can’t perform that action at this time.
0 commit comments