cartodb-4.42/spec/factories/user_multifactor_auths.rb

14 lines
237 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
FactoryGirl.define do
factory :totp, class: Carto::UserMultifactorAuth do
type Carto::UserMultifactorAuth::TYPE_TOTP
trait :needs_setup do
enabled false
end
trait :active do
enabled true
end
end
end