mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 01:31:39 -05:00
13 lines
212 B
Ruby
13 lines
212 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :family_membership do
|
|
association :family
|
|
association :user
|
|
role { :member }
|
|
|
|
trait :owner do
|
|
role { :owner }
|
|
end
|
|
end
|
|
end
|