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

3.6.6 backports 1 #38199

Merged
merged 12 commits into from
Jan 16, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Fix a code example in RESTEasy Reactive doc
Per report from @muditporwal in:
quarkusio/quarkusio.github.io#1866

(cherry picked from commit 40b0a65)
  • Loading branch information
gsmet committed Jan 15, 2024
commit 518d71f99d76858a656c73367aeb8437ef839cd3
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/resteasy-reactive.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,7 @@ public class Person {
private final Long id;
private final String first;
private final String last;
@SecureField(rolesAllowed = ${role:admin}") <1>
@SecureField(rolesAllowed = "${role:admin}") <1>
private String address;

public Person(Long id, String first, String last) {
Expand Down
Loading