Skip to content

Commit

Permalink
Fix table entries in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mercur3 authored and gsmet committed Nov 8, 2022
1 parent bf907e9 commit c843099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/security-getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ The steps in this tutorial guide you through building an application that provid
|===
|Endpoint | Description
|`/api/public`| The `/api/public` endpoint can be accessed anonymously.
|`/api/users/me`|The `/api/admin` endpoint is protected with role-based access control (RBAC), and only users who have been granted the `admin` role can access it.
|`/api/admin`| The `/api/admin` endpoint is protected with role-based access control (RBAC), and only users who have been granted the `admin` role can access it.
At this endpoint, the `@RolesAllowed` annotation is used to declaratively enforce the access constraint.
| `/api/admin`| The `/api/users/me` endpoint is protected with RBAC and only users that have been granted the `user` role can access it. A JSON document with details about the user is returned as a response.
|`/api/users/me`| The `/api/users/me` endpoint is protected with RBAC and only users that have been granted the `user` role can access it. A JSON document with details about the user is returned as a response.
|===

[TIP]
Expand Down

0 comments on commit c843099

Please sign in to comment.