Skip to content

Commit 72af1c1

Browse files
committed
switch to single quotes
1 parent ded1895 commit 72af1c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

delete-user-data/extension.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ params:
9090
label: Cloud Firestore paths
9191
example: users/{UID},admins/{UID}
9292
required: false
93-
validationRegex: "^[^/]+(/[^/]+)*$"
93+
validationRegex: '^[^/]+(/[^/]+)*$'
9494
validationErrorMessage: Must be a valid Cloud Firestore path.
9595
description: >-
9696
Which paths in your Cloud Firestore instance contain user data? Leave empty if
@@ -106,7 +106,7 @@ params:
106106
label: Realtime Database paths
107107
example: users/{UID},admins/{UID}
108108
required: false
109-
validationRegex: "^\S+$"
109+
validationRegex: '^\S+$'
110110
validationErrorMessage: Database path(s) cannot contain spaces.
111111
description: >-
112112
Which paths in your Realtime Database instance contain user data? Leave empty if you
@@ -121,7 +121,7 @@ params:
121121
label: Cloud Storage paths
122122
example: "{DEFAULT}/{UID}-pic.png,my-awesome-app-logs/{UID}-logs.txt"
123123
required: false
124-
validationRegex: "^\S+$"
124+
validationRegex: '^\S+$'
125125
validationErrorMessage: Invalid storage path.
126126
description: >-
127127
Where in Google Cloud Storage do you store user data? Leave empty if you

0 commit comments

Comments
 (0)