-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
webconsole refactoring with react 18 (#47)
* Apply changes for react-18. * Apply patches for react-18. * Update favicon. * Fix SubscriberCreate error when no S-NSSAI is defined. * Show proper error message. * Add webconsole to .gitignore. * Add MSISDN field in Subscription. * Make label to be consistent. * Update diff to 3.3.0. * add apiConfig as default value * Fix bug of identify admin tenant. * Fix FlowRule handling. * Fix golangci-lint error. * Remove diff to avoid confusion. * Handle non first DNN's FlowRules. * Add number of subscribers for bulk creation of the user. * Start from 1. * Set default S-NSSAI with 2 S-NSSAI configuration. * Fix Tenant Id -> Tenant Name. * Refactor again -> confirm. * Support Password Confirm feature when creating new user. * Support password confirmation in editing the user. --------- Co-authored-by: ianchen0119 <[email protected]>
- Loading branch information
1 parent
85cc414
commit ba7476d
Showing
177 changed files
with
76,899 additions
and
26,338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,6 @@ cscope.* | |
# Debug | ||
*.log | ||
*.pcap | ||
|
||
# Binary | ||
webconsole |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
GENERATE_SOURCEMAP=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"root": true, | ||
"extends": [ | ||
"airbnb-typescript/base", | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier" | ||
], | ||
"overrides": [ | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module", | ||
"project": "./tsconfig.json" | ||
}, | ||
"plugins": [ | ||
"react", | ||
"@typescript-eslint", | ||
"import" | ||
], | ||
"rules": { | ||
"@typescript-eslint/no-non-null-assertion": 0, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"import/extensions": "off" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,41 @@ | ||
node_modules | ||
## openapi-generate | ||
**/.DS_Store | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
/build | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.openapi-generator-ignore | ||
.openapi-generator/ | ||
mdm | ||
README.md | ||
|
||
build | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"semi": true, | ||
"tabWidth": 2, | ||
"printWidth": 100, | ||
"singleQuote": false, | ||
"trailingComma": "all", | ||
"jsxSingleQuote": false, | ||
"bracketSpacing": true | ||
} |
Oops, something went wrong.