-
Notifications
You must be signed in to change notification settings - Fork 9
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
feat(java): Allow overrides of Configuration #7
Conversation
211bf6f
to
05ed244
Compare
* @param storeId (required) | ||
* @param body (required) | ||
* @param configurationOverride Override the {@link Configuration} this OpenFgaApi was constructed with | ||
* @return CompletableFuture<CheckResponse> |
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.
This looks a bit funny
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.
Javadocs use html escapes so <
is an escaped <
-- it also allows some html tags like <code>
but the rules are not exactly the same as HTML. There are also some custom {@<ident> <content>}
Javadoc tags.
This renders correctly for the viewer:
But taking a look at the JavaDocs, there's also a mess of unrendered markdown in some descriptions
Maybe it's worth an issue to update all the things. Maybe it's as simple as pandoc from commonmark to html for the descriptions, and doing some html unescaping. This is in a lot of the generated files
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.
Opened this issue, I think I'd rather it was all addressed together, and avoid letting it get inconsistent right now
958df2f
to
b31f60e
Compare
Description
Most changes here can be seen in OpenFgaApi.java
References
Generated by openfga/sdk-generator#189
Review Checklist
main