Files
clientsflow/research/chatwoot/spec/factories/custom_roles.rb

9 lines
226 B
Ruby

FactoryBot.define do
factory :custom_role do
account
name { Faker::Name.name }
description { Faker::Lorem.sentence }
permissions { CustomRole::PERMISSIONS.sample(SecureRandom.random_number(1..4)) }
end
end