Chatwoot/spec/factories/working_hours.rb
Adam Zysko 65ed4c78a4
feat: Business hours
Data models and APIs for business hours

ref: #234
2020-11-01 00:14:33 +05:30

12 lines
220 B
Ruby

# 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