diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-01-25 19:55:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 19:55:40 +0100 |
commit | 13a2abacc8f943e2b1d2da63551443887e1065b0 (patch) | |
tree | 71928da85c055d2cee7eb008a699c657cd25cfaf /spec | |
parent | e5ae75bf6a88ff70570df43635e75db904e40a50 (diff) |
Add `roles` attribute to Account entities in REST API (#23255)
Diffstat (limited to 'spec')
-rw-r--r-- | spec/fabricators/user_role_fabricator.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/fabricators/user_role_fabricator.rb b/spec/fabricators/user_role_fabricator.rb index 28f76c8c4..ed0a7dc1f 100644 --- a/spec/fabricators/user_role_fabricator.rb +++ b/spec/fabricators/user_role_fabricator.rb @@ -1,5 +1,5 @@ Fabricator(:user_role) do name "MyString" - color "MyString" - permissions "" -end \ No newline at end of file + color "" + permissions 0 +end |