File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,8 @@ params:
90
90
label : Cloud Firestore paths
91
91
example : users/{UID},admins/{UID}
92
92
required : false
93
+ validationRegex : " ^[^/]+(/[^/]+)*$"
94
+ validationErrorMessage : Must be a valid Cloud Firestore path.
93
95
description : >-
94
96
Which paths in your Cloud Firestore instance contain user data? Leave empty if
95
97
you don't use Cloud Firestore.
@@ -104,6 +106,8 @@ params:
104
106
label : Realtime Database paths
105
107
example : users/{UID},admins/{UID}
106
108
required : false
109
+ validationRegex : " ^\S +$"
110
+ validationErrorMessage : Database path(s) cannot contain spaces.
107
111
description : >-
108
112
Which paths in your Realtime Database instance contain user data? Leave empty if you
109
113
don't use Realtime Database.
@@ -117,6 +121,8 @@ params:
117
121
label : Cloud Storage paths
118
122
example : " {DEFAULT}/{UID}-pic.png,my-awesome-app-logs/{UID}-logs.txt"
119
123
required : false
124
+ validationRegex : " ^\S +$"
125
+ validationErrorMessage : Invalid storage path.
120
126
description : >-
121
127
Where in Google Cloud Storage do you store user data? Leave empty if you
122
128
don't use Cloud Storage.
You can’t perform that action at this time.
0 commit comments