285ffb2238
We show a blue flash banner if the user already accepted, and show a button allowing them to continue to the application.
14 lines
171 B
Ruby
14 lines
171 B
Ruby
FactoryBot.define do
|
|
factory :term_agreement do
|
|
term
|
|
user
|
|
end
|
|
|
|
trait :declined do
|
|
accepted false
|
|
end
|
|
|
|
trait :accepted do
|
|
accepted true
|
|
end
|
|
end
|