File tree Expand file tree Collapse file tree 6 files changed +22
-4
lines changed
client/packages/lowcoder/src Expand file tree Collapse file tree 6 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ export const THEME_DETAIL = "/setting/theme/detail";
21
21
export const THEME_DETAIL_URL = `${ THEME_DETAIL } /:themeId` ;
22
22
export const AUDIT_LOG_DASHBOARD = "/setting/audit" ;
23
23
export const AUDIT_LOG_DETAIL = "/setting/audit/:eventId/detail" ;
24
+ export const APP_USAGE_DASHBOARD = "/setting/app-usage" ;
25
+ export const APP_USAGE_DETAIL = "/setting/app-usage/:eventId/detail" ;
24
26
25
27
export const OAUTH_PROVIDER_SETTING = "/setting/oauth-provider" ;
26
28
export const OAUTH_PROVIDER_DETAIL = "/setting/oauth-provider/detail" ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ export function AppUsageDashboard ( ) {
2
+ return < > </ >
3
+ }
Original file line number Diff line number Diff line change
1
+ export function AppUsageDetail ( ) {
2
+ return < > </ >
3
+ }
Original file line number Diff line number Diff line change
1
+ import { APP_USAGE_DASHBOARD , APP_USAGE_DETAIL } from "@lowcoder-ee/constants/routesURL" ;
2
+ import { Route , Switch } from "react-router-dom" ;
3
+ import { AppUsageDashboard } from "./dashboard" ;
4
+ import { AppUsageDetail } from "./detail" ;
5
+
6
+ export const AppUsage = ( ) => {
7
+ return (
8
+ < Switch >
9
+ < Route path = { APP_USAGE_DASHBOARD } component = { AppUsageDashboard } exact />
10
+ < Route path = { APP_USAGE_DETAIL } component = { AppUsageDetail } exact />
11
+ </ Switch >
12
+ ) ;
13
+ } ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import history from "util/history";
26
26
import { useParams } from "react-router-dom" ;
27
27
import { BrandingSetting } from "@lowcoder-ee/pages/setting/branding/BrandingSetting" ;
28
28
import { Environments } from "@lowcoder-ee/pages/setting/environments/Environments" ;
29
- import { AppUsage } from "@lowcoder-ee/pages/setting/appUsage/AppUsage " ;
29
+ import { AppUsage } from "@lowcoder-ee/pages/setting/appUsage" ;
30
30
import { AuditLog } from "@lowcoder-ee/pages/setting/audit" ;
31
31
import { IdSourceHome } from "@lowcoder-ee/pages/setting/idSource" ;
32
32
import { selectSystemConfig } from "redux/selectors/configSelectors" ;
You can’t perform that action at this time.
0 commit comments