Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: set correct path for consent osp #371

Merged
merged 2 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

New features, fixed bugs, known defects and other noteworthy changes to each release of the Catena-X Portal helm chart.

## unreleased

### Bugfix

* portal-cd:
* set correct path for consent osp url

## 2.1.0-RC1

### Change
Expand Down Expand Up @@ -299,4 +306,4 @@ n/a
### Change

* added product helm chart for portal, combining frontend and backend chart.
* moved repository to eclipse-tractusx.
* moved repository to eclipse-tractusx.
2 changes: 1 addition & 1 deletion charts/portal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ dependencies:
| backend.processesworker.onboardingServiceProvider.encryptionConfigs.index1.paddingMode | string | `"PKCS7"` | |
| backend.processesworker.onboardingServiceProvider.encryptionConfigs.index1.encryptionKey | string | `""` | EncryptionKey for onboardingserviceprovider. Secret-key 'onboardingserviceprovider-encryption-key1'. Expected format is 256 bit (64 digits) hex. When upgrading from v2.0.0-RC1 please read document portal-upgrade-details.md |
| backend.processesworker.networkRegistration.loginDocumentPath | string | `"/documentation/?path=docs%2F09.+Others%28s%29%2F01.+Login.md"` | |
| backend.processesworker.networkRegistration.externalRegistrationPath | string | `"/?overlay=consent_osp"` | |
| backend.processesworker.networkRegistration.externalRegistrationPath | string | `"/consent_osp"` | |
| backend.processesworker.networkRegistration.closeApplicationPath | string | `"/decline"` | The logic to decline an application is not yet implemented in the backend - this will currently lead to a 404 page when clicking on the link in the mail |
| backend.processesworker.dim.clientId | string | `"dim-client-id"` | Provide dim client-id from CX IAM centralidp. |
| backend.processesworker.dim.clientSecret | string | `""` | Client-secret for dim client-id. Secret-key 'dim-client-secret'. |
Expand Down
2 changes: 1 addition & 1 deletion charts/portal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ backend:
encryptionKey: ""
networkRegistration:
loginDocumentPath: "/documentation/?path=docs%2F09.+Others%28s%29%2F01.+Login.md"
externalRegistrationPath: "/?overlay=consent_osp"
externalRegistrationPath: "/consent_osp"
# -- The logic to decline an application is not yet implemented in the backend - this will currently lead to a 404 page when clicking on the link in the mail
closeApplicationPath: "/decline"
dim:
Expand Down