Chatwoot/spec/factories/working_hours.rb

13 lines
220 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :working_hour do
inbox
day_of_week { 1 }
open_hour { 9 }
open_minutes { 0 }
close_hour { 17 }
close_minutes { 0 }
end
end