mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
13 lines
211 B
Ruby
13 lines
211 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :csat_survey_response do
|
|
rating { 1 }
|
|
feedback_message { Faker::Movie.quote }
|
|
account
|
|
conversation
|
|
message
|
|
contact
|
|
end
|
|
end
|