Added ability to escape role "External Auth ID" commas

- Using a backslash in this field before a comma.
- Could potentially (Although unlikely) be a breaking change.

For #3405
This commit is contained in:
Dan Brown
2022-05-04 21:03:13 +01:00
parent d2ed98d20d
commit d795af04df
3 changed files with 74 additions and 4 deletions

View File

@ -23,6 +23,7 @@ class RoleFactory extends Factory
return [
'display_name' => $this->faker->sentence(3),
'description' => $this->faker->sentence(10),
'external_auth_id' => '',
];
}
}