dd9d5e410c
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
12 lines
211 B
Ruby
12 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
|