0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-05 00:30:26 +00:00

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 
This commit is contained in:
Dan Brown 2022-05-04 21:03:13 +01:00
parent d2ed98d20d
commit d795af04df
No known key found for this signature in database
GPG key ID: 46D9F943C24A2EF9
3 changed files with 74 additions and 4 deletions
database/factories/Auth

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' => '',
];
}
}