Skip to content

Commit d4da7c6

Browse files
authored
fix(storage-resize-images): correct include path list description
2 parents 74340d1 + 8a0bd23 commit d4da7c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

storage-resize-images/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ You can find more information about this extension in the following articles:
7777

7878

7979
* Paths that contain images you want to resize: Restrict storage-resize-images to only resize images in specific locations in your Storage bucket by supplying a comma-separated list of absolute paths. For example, specifying the paths `/users/pictures,/restaurants/menuItems` will resize any images found in any subdirectories of `/users/pictures` and `/restaurants/menuItems`.
80-
You may also use wildcard notation for directories in the path. For example, `/users/*/pictures` would exclude any images in any subdirectories of `/users/foo/pictures` as well as any images in subdirectories of `/users/bar/pictures`, but also any images in subdirectories of `/users/any/level/of/subdirectories/pictures`.
81-
If you prefer not to explicitly exclude any directories of your Storage bucket, leave this field empty.
80+
You may also use wildcard notation for directories in the path. For example, `/users/*/pictures` would include any images in any subdirectories of `/users/foo/pictures` as well as any images in subdirectories of `/users/bar/pictures`, but also any images in subdirectories of `/users/any/level/of/subdirectories/pictures`.
81+
If you prefer not to explicitly restrict to certain directories of your Storage bucket, leave this field empty.
8282

8383

8484
* List of absolute paths not included for resized images: Ensure storage-resize-images does *not* resize images in _specific locations_ in your Storage bucket by supplying a comma-separated list of absolute paths. For example, to *exclude* the images stored in the `/foo/alpha` and its subdirectories and `/bar/beta` and its subdirectories, specify the paths `/foo/alpha,/bar/beta`.

storage-resize-images/extension.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,10 @@ params:
209209
will resize any images found in any subdirectories of `/users/pictures` and `/restaurants/menuItems`.
210210
211211
You may also use wildcard notation for directories in the path. For example, `/users/*/pictures`
212-
would exclude any images in any subdirectories of `/users/foo/pictures` as well as any images in
212+
would include any images in any subdirectories of `/users/foo/pictures` as well as any images in
213213
subdirectories of `/users/bar/pictures`, but also any images in subdirectories of `/users/any/level/of/subdirectories/pictures`.
214214
215-
If you prefer not to explicitly exclude any directories of your Storage bucket, leave this field empty.
215+
If you prefer not to explicitly restrict to certain directories of your Storage bucket, leave this field empty.
216216
type: string
217217
example: "/users/avatars,/design/pictures"
218218
validationRegex: ^(\/[^\s\/\,]+)+(\,(\/[^\s\/\,]+)+)*$

0 commit comments

Comments
 (0)