-
Notifications
You must be signed in to change notification settings - Fork 0
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
workaround #5
workaround #5
Conversation
pulledtim
commented
Oct 10, 2023
- Simplified persistence to store configs of a service into a blob
- Workaround for faulty micronaut openapi codegen
@@ -1,26 +1,5 @@ | |||
CREATE TABLE IF NOT EXISTS `service` ( | |||
`id` varchar(255) NOT NULL PRIMARY KEY, | |||
`default_oidc_scope` varchar(255) NOT NULL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thats not how flyway works. You should add a new migration for the changes.
private java.util.List<String> trustedIssuersLists; | ||
|
||
// methods | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why dont you use the lombok methods?
@@ -0,0 +1,142 @@ | |||
package org.fiware.iam.ccs.model; | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you add generated classes to the repo?
@Join(value = "oidcScopes", type = Join.Type.LEFT_FETCH) | ||
@Join(value = "oidcScopes.credentials", type = Join.Type.LEFT_FETCH) | ||
@Join(value = "oidcScopes.credentials.trustedLists", type = Join.Type.LEFT_FETCH) | ||
// @Join(value = "oidcScopes", type = Join.Type.LEFT_FETCH) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just delete it
Closing due to continuing on target branch |