├── .github └── workflows │ ├── build-frontend.yml │ ├── commit-msg-check.yml │ ├── go.yml │ └── golangci-lint.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── backend ├── WebUI │ ├── api_charging.go │ ├── api_sample.go │ ├── api_verify.go │ ├── api_verify_test.go │ ├── api_webui.go │ ├── model_charging_data.go │ ├── model_flow_rule.go │ ├── model_profile_data.go │ ├── model_qos_flow.go │ ├── model_rating_group_data_usage.go │ ├── model_subs_data.go │ ├── model_subs_list_ie.go │ ├── model_tenant_data.go │ ├── model_user_data.go │ ├── model_web_auth_subs.go │ ├── models_charging_record.go │ ├── routers.go │ └── utils.go ├── billing │ ├── client.go │ └── server.go ├── factory │ ├── config.go │ └── factory.go ├── logger │ └── logger.go ├── webui_context │ ├── context.go │ ├── nrf_discovery.go │ └── nrf_management.go └── webui_service │ ├── middleware.go │ └── webui_init.go ├── config └── webuicfg.yaml ├── free5gc-Webconsole.postman_collection.json ├── frontend ├── .env ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .yarnrc.yml ├── api │ └── openapi.yaml ├── index.html ├── openapi-generator-docker.sh ├── openapi-generator.sh ├── package.json ├── public │ ├── favicon.ico │ ├── free5gc_logo.png │ └── manifest.json ├── readme.md ├── src │ ├── App.css │ ├── App.tsx │ ├── Blank.tsx │ ├── Dashboard.tsx │ ├── ListItems.tsx │ ├── LoginContext.tsx │ ├── ProtectedRoute.tsx │ ├── SimpleListMenu.tsx │ ├── Top.tsx │ ├── api │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── api.ts │ │ ├── base.ts │ │ ├── common.ts │ │ ├── configuration.ts │ │ ├── git_push.sh │ │ └── index.ts │ ├── axios.tsx │ ├── constants │ │ └── config.tsx │ ├── hooks │ │ ├── profile-form.tsx │ │ └── subscription-form.tsx │ ├── index.css │ ├── index.tsx │ ├── lib │ │ ├── const.ts │ │ ├── dtos │ │ │ ├── profile.test.ts │ │ │ ├── profile.ts │ │ │ ├── subscription.test.ts │ │ │ └── subscription.ts │ │ ├── jsonFormating.ts │ │ ├── schemas │ │ │ └── subscription.ts │ │ ├── utils.ts │ │ └── validator │ │ │ ├── profileValidator.ts │ │ │ ├── subscriptionValidator.ts │ │ │ └── validtors.ts │ ├── models │ │ └── UEInfoWithCR.js │ ├── pages │ │ ├── AnalysisList.tsx │ │ ├── ChangePassword.tsx │ │ ├── Charging │ │ │ ├── ChargingList.tsx │ │ │ └── ChargingTable.tsx │ │ ├── Component │ │ │ ├── ChargingCfg.tsx │ │ │ ├── FlowRule.tsx │ │ │ └── UpSecurity.tsx │ │ ├── Login.tsx │ │ ├── Logout.tsx │ │ ├── ProfileCreate │ │ │ ├── FormCharingConfig.tsx │ │ │ ├── FormFlowRule.tsx │ │ │ ├── FormUpSecurity.tsx │ │ │ ├── ProfileFormBasic.tsx │ │ │ ├── ProfileFormSessions.tsx │ │ │ ├── ProfileFormUeAmbr.tsx │ │ │ └── index.tsx │ │ ├── ProfileList.tsx │ │ ├── ProfileRead.tsx │ │ ├── StatusList.tsx │ │ ├── StatusRead.tsx │ │ ├── SubscriberCreate │ │ │ ├── FormCharingConfig.tsx │ │ │ ├── FormFlowRule.tsx │ │ │ ├── FormUpSecurity.tsx │ │ │ ├── SubscriberFormBasic.tsx │ │ │ ├── SubscriberFormSessions.tsx │ │ │ ├── SubscriberFormUeAmbr.tsx │ │ │ └── index.tsx │ │ ├── SubscriberList.tsx │ │ ├── SubscriberRead.tsx │ │ ├── TenantCreate.tsx │ │ ├── TenantList.tsx │ │ ├── TenantUpdate.tsx │ │ ├── UserCreate.tsx │ │ ├── UserList.tsx │ │ └── UserUpdate.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── setupTests.ts ├── tsconfig.json ├── vite-env.d.ts ├── vite.config.mjs ├── webconsole.yaml └── yarn.lock ├── go.mod ├── go.sum ├── readme.md ├── run.sh └── server.go /.github/workflows/build-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/.github/workflows/build-frontend.yml -------------------------------------------------------------------------------- /.github/workflows/commit-msg-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/.github/workflows/commit-msg-check.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/Makefile -------------------------------------------------------------------------------- /backend/WebUI/api_charging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/api_charging.go -------------------------------------------------------------------------------- /backend/WebUI/api_sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/api_sample.go -------------------------------------------------------------------------------- /backend/WebUI/api_verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/api_verify.go -------------------------------------------------------------------------------- /backend/WebUI/api_verify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/api_verify_test.go -------------------------------------------------------------------------------- /backend/WebUI/api_webui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/api_webui.go -------------------------------------------------------------------------------- /backend/WebUI/model_charging_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_charging_data.go -------------------------------------------------------------------------------- /backend/WebUI/model_flow_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_flow_rule.go -------------------------------------------------------------------------------- /backend/WebUI/model_profile_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_profile_data.go -------------------------------------------------------------------------------- /backend/WebUI/model_qos_flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_qos_flow.go -------------------------------------------------------------------------------- /backend/WebUI/model_rating_group_data_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_rating_group_data_usage.go -------------------------------------------------------------------------------- /backend/WebUI/model_subs_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_subs_data.go -------------------------------------------------------------------------------- /backend/WebUI/model_subs_list_ie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_subs_list_ie.go -------------------------------------------------------------------------------- /backend/WebUI/model_tenant_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_tenant_data.go -------------------------------------------------------------------------------- /backend/WebUI/model_user_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_user_data.go -------------------------------------------------------------------------------- /backend/WebUI/model_web_auth_subs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/model_web_auth_subs.go -------------------------------------------------------------------------------- /backend/WebUI/models_charging_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/models_charging_record.go -------------------------------------------------------------------------------- /backend/WebUI/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/routers.go -------------------------------------------------------------------------------- /backend/WebUI/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/WebUI/utils.go -------------------------------------------------------------------------------- /backend/billing/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/billing/client.go -------------------------------------------------------------------------------- /backend/billing/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/billing/server.go -------------------------------------------------------------------------------- /backend/factory/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/factory/config.go -------------------------------------------------------------------------------- /backend/factory/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/factory/factory.go -------------------------------------------------------------------------------- /backend/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/logger/logger.go -------------------------------------------------------------------------------- /backend/webui_context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/webui_context/context.go -------------------------------------------------------------------------------- /backend/webui_context/nrf_discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/webui_context/nrf_discovery.go -------------------------------------------------------------------------------- /backend/webui_context/nrf_management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/webui_context/nrf_management.go -------------------------------------------------------------------------------- /backend/webui_service/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/webui_service/middleware.go -------------------------------------------------------------------------------- /backend/webui_service/webui_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/backend/webui_service/webui_init.go -------------------------------------------------------------------------------- /config/webuicfg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/config/webuicfg.yaml -------------------------------------------------------------------------------- /free5gc-Webconsole.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/free5gc-Webconsole.postman_collection.json -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- 1 | GENERATE_SOURCEMAP=false 2 | -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /frontend/api/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/api/openapi.yaml -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/openapi-generator-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/openapi-generator-docker.sh -------------------------------------------------------------------------------- /frontend/openapi-generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/openapi-generator.sh -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/free5gc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/public/free5gc_logo.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/readme.md -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/Blank.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/Blank.tsx -------------------------------------------------------------------------------- /frontend/src/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/Dashboard.tsx -------------------------------------------------------------------------------- /frontend/src/ListItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/ListItems.tsx -------------------------------------------------------------------------------- /frontend/src/LoginContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/LoginContext.tsx -------------------------------------------------------------------------------- /frontend/src/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/ProtectedRoute.tsx -------------------------------------------------------------------------------- /frontend/src/SimpleListMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/SimpleListMenu.tsx -------------------------------------------------------------------------------- /frontend/src/Top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/Top.tsx -------------------------------------------------------------------------------- /frontend/src/api/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /frontend/src/api/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/api/.npmignore -------------------------------------------------------------------------------- /frontend/src/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/api/api.ts -------------------------------------------------------------------------------- /frontend/src/api/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/api/base.ts -------------------------------------------------------------------------------- /frontend/src/api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/api/common.ts -------------------------------------------------------------------------------- /frontend/src/api/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/api/configuration.ts -------------------------------------------------------------------------------- /frontend/src/api/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/api/git_push.sh -------------------------------------------------------------------------------- /frontend/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/api/index.ts -------------------------------------------------------------------------------- /frontend/src/axios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/axios.tsx -------------------------------------------------------------------------------- /frontend/src/constants/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/constants/config.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/profile-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/hooks/profile-form.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/subscription-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/hooks/subscription-form.tsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/lib/const.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_5QI = 9; 2 | -------------------------------------------------------------------------------- /frontend/src/lib/dtos/profile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/dtos/profile.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/dtos/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/dtos/profile.ts -------------------------------------------------------------------------------- /frontend/src/lib/dtos/subscription.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/dtos/subscription.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/dtos/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/dtos/subscription.ts -------------------------------------------------------------------------------- /frontend/src/lib/jsonFormating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/jsonFormating.ts -------------------------------------------------------------------------------- /frontend/src/lib/schemas/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/schemas/subscription.ts -------------------------------------------------------------------------------- /frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/src/lib/validator/profileValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/validator/profileValidator.ts -------------------------------------------------------------------------------- /frontend/src/lib/validator/subscriptionValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/validator/subscriptionValidator.ts -------------------------------------------------------------------------------- /frontend/src/lib/validator/validtors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/lib/validator/validtors.ts -------------------------------------------------------------------------------- /frontend/src/models/UEInfoWithCR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/models/UEInfoWithCR.js -------------------------------------------------------------------------------- /frontend/src/pages/AnalysisList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/AnalysisList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ChangePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ChangePassword.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Charging/ChargingList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/Charging/ChargingList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Charging/ChargingTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/Charging/ChargingTable.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Component/ChargingCfg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/Component/ChargingCfg.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Component/FlowRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/Component/FlowRule.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Component/UpSecurity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/Component/UpSecurity.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/Login.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/Logout.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfileCreate/FormCharingConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ProfileCreate/FormCharingConfig.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfileCreate/FormFlowRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ProfileCreate/FormFlowRule.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfileCreate/FormUpSecurity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ProfileCreate/FormUpSecurity.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfileCreate/ProfileFormBasic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ProfileCreate/ProfileFormBasic.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfileCreate/ProfileFormSessions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ProfileCreate/ProfileFormSessions.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfileCreate/ProfileFormUeAmbr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ProfileCreate/ProfileFormUeAmbr.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfileCreate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ProfileCreate/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ProfileList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ProfileRead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/ProfileRead.tsx -------------------------------------------------------------------------------- /frontend/src/pages/StatusList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/StatusList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/StatusRead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/StatusRead.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SubscriberCreate/FormCharingConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/SubscriberCreate/FormCharingConfig.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SubscriberCreate/FormFlowRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/SubscriberCreate/FormFlowRule.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SubscriberCreate/FormUpSecurity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/SubscriberCreate/FormUpSecurity.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SubscriberCreate/SubscriberFormBasic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/SubscriberCreate/SubscriberFormBasic.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SubscriberCreate/SubscriberFormSessions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/SubscriberCreate/SubscriberFormSessions.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SubscriberCreate/SubscriberFormUeAmbr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/SubscriberCreate/SubscriberFormUeAmbr.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SubscriberCreate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/SubscriberCreate/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SubscriberList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/SubscriberList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/SubscriberRead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/SubscriberRead.tsx -------------------------------------------------------------------------------- /frontend/src/pages/TenantCreate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/TenantCreate.tsx -------------------------------------------------------------------------------- /frontend/src/pages/TenantList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/TenantList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/TenantUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/TenantUpdate.tsx -------------------------------------------------------------------------------- /frontend/src/pages/UserCreate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/UserCreate.tsx -------------------------------------------------------------------------------- /frontend/src/pages/UserList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/UserList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/UserUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/pages/UserUpdate.tsx -------------------------------------------------------------------------------- /frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/vite.config.mjs -------------------------------------------------------------------------------- /frontend/webconsole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/webconsole.yaml -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/go.sum -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/readme.md -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/run.sh -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/webconsole/HEAD/server.go --------------------------------------------------------------------------------