Skip to content

Commit

Permalink
1204 - Configure Connector after creation (#1356)
Browse files Browse the repository at this point in the history
* 1024 - Configure Connector after creation

* Update CHANGELOG.md file

* Added connection description placeholder if value is not supplied at runtime

* Resolved prettier formatting issue

* Added reset method to the connection type slice

* Forgot snippet of code

* Resolved edit connection with assigning the correct connection option

* Updated .eslintrc.json files to enforce curly braces for all control statements

Added the following rules to enforce curly braces for all control statements
- " curly": ["error", "all"],
- "nonblock-statement-body-position": ["error", "below"]

* Added additional api models

* Updated Fides Admin UI NPM dependencies due to moderate severity vulnerabilities

* Added ConnectionType and SystemType api models

* Resolved edit connection not being rendered properly when navigating to browser URL directly
  • Loading branch information
chriscalhoun1974 authored Oct 17, 2022
1 parent c6f0c9e commit 8917cad
Show file tree
Hide file tree
Showing 51 changed files with 1,137 additions and 522 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome",
"name": "Launch Chrome: Admin UI",
"request": "launch",
"type": "chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/clients/admin-ui"
},
{
"name": "Attach to Chrome",
"name": "Attach to Chrome: Admin UI",
"port": 9222,
"request": "attach",
"type": "chrome",
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ The types of changes are:
* Dataset generation enhancements using Fides Classify for Plus users:
* Integrate Fides Plus API into placeholder features introduced in 1.9.0. [#1194](https://github.com/ethyca/fides/pull/1194)

* Fides Admin UI:
* Configure Connector after creation [#1204](https://github.com/ethyca/fides/pull/1356)

### Fixed
* Privacy Center:
* Handle error on startup if server isn't running [#1239](https://github.com/ethyca/fides/pull/1239)
Expand Down
2 changes: 2 additions & 0 deletions clients/admin-ui/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
"tsconfigRootDir": "./"
},
"rules": {
"curly": ["error", "all"],
"nonblock-statement-body-position": ["error", "below"],
// causes bug in re-exporting default exports, see
// https://github.com/eslint/eslint/issues/15617
"no-restricted-exports": [0],
Expand Down
Loading

0 comments on commit 8917cad

Please sign in to comment.