2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-25 11:32:08 -04:00
|
|
|
Fabricator(:user_field) do
|
|
|
|
name { sequence(:name) { |i| "field_#{i}" } }
|
2014-10-02 15:56:28 -04:00
|
|
|
description "user field description"
|
2014-09-25 11:32:08 -04:00
|
|
|
field_type "text"
|
2014-09-26 14:48:34 -04:00
|
|
|
editable true
|
2024-05-23 07:18:25 -04:00
|
|
|
requirement "on_signup"
|
2014-09-25 11:32:08 -04:00
|
|
|
end
|