From 91a92e5f513668a4e422c71fb9c19f09952a579f Mon Sep 17 00:00:00 2001 From: "Greg L. Turnquist" Date: Mon, 8 Feb 2021 11:23:23 -0600 Subject: [PATCH] Backport fix to reference docs to use proper RepositoryDetectionStrategy enum values. Orginal issue: #1970. --- src/main/asciidoc/getting-started.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/getting-started.adoc b/src/main/asciidoc/getting-started.adoc index 87cdf1b0a..1208c808f 100644 --- a/src/main/asciidoc/getting-started.adoc +++ b/src/main/asciidoc/getting-started.adoc @@ -104,7 +104,7 @@ Spring Data REST uses a `RepositoryDetectionStrategy` to determine whether a rep | Name | Description | `DEFAULT` | Exposes all public repository interfaces but considers the `exported` flag of `@(Repository)RestResource`. | `ALL` | Exposes all repositories independently of type visibility and annotations. -| `ANNOTATION` | Only repositories annotated with `@(Repository)RestResource` are exposed, unless their `exported` flag is set to `false`. +| `ANNOTATED` | Only repositories annotated with `@(Repository)RestResource` are exposed, unless their `exported` flag is set to `false`. | `VISIBILITY` | Only public repositories annotated are exposed. |===