Skip to content

Commit

Permalink
fix(delete-user-data): update regex for delete-user-data
Browse files Browse the repository at this point in the history
  • Loading branch information
cabljac committed Nov 21, 2023
1 parent 7dd803c commit a145703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions delete-user-data/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ params:
From which Realtime Database instance do you want to delete data keyed on a user ID?
type: string
example: my-instance
validationRegex: ^([0-9a-z_.-]*)$
validationErrorMessage: Invalid database instance
validationRegex: ^[^\.\$\#\]\[\/\x00-\x1F\x7F]+$
validationErrorMessage: Invalid database instance. Make sure that the instance name does not contain any of the following characters: . $ # [ ] /
required: false

- param: SELECTED_DATABASE_LOCATION
Expand Down

0 comments on commit a145703

Please sign in to comment.