* Add initial remove association feature * Add initial account deletion feature * Add back in cursor pointer * Update email text copy * Update copy on email html * Fix nav issue and add integration buttons to account
8 lines
192 B
Ruby
8 lines
192 B
Ruby
FactoryBot.define do
|
|
factory :comment do
|
|
user
|
|
body_markdown { Faker::Hipster.paragraph(1) }
|
|
commentable_id { rand(1000) }
|
|
commentable_type { "Article" }
|
|
end
|
|
end
|