Allow task me customer to talk without submitting task request #52

Closed
bilal.catic wants to merge 4 commits from allow-task-me-customer-to-talk-without-submitting-task-request into master
Showing only changes of commit c17f41525d - Show all commits

View File

@@ -5,4 +5,6 @@ class TaskRequest < ApplicationRecord
enum status: [:pending, :completed, :cancelled]
scope :order_by_recent, -> { order(created_at: :desc) }
validates :time_allowed, numericality: { only_integer: true, greater_than_or_equal_to: 2 }, allow_blank: true
end