mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:13:22 +08:00
14 lines
262 B
Ruby
14 lines
262 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DoNotDisturbTiming < ActiveRecord::Base
|
|
belongs_to :user
|
|
|
|
validate :ends_at_greater_thans_starts_at
|
|
|
|
def ends_at_greater_thans_starts_at
|
|
if starts_at > ends_at
|
|
errors.add(:ends_at, :invalid)
|
|
end
|
|
end
|
|
end
|