Since the :post_started_at and :post_ended_at fields are of type Date, we check with Date.current and not with Time.current. This change has been caused because some test suites were failing (https://github.com/consul/consul/runs/2170798218?check_suite_focus=true). The code we had was causing the banners to be available a few hours earlier or later than they should be depending on the time zone of the application.
26 lines
917 B
Ruby
26 lines
917 B
Ruby
class Banner < ApplicationRecord
|
|
acts_as_paranoid column: :hidden_at
|
|
include ActsAsParanoidAliases
|
|
|
|
attribute :background_color, default: "#e7f2fc"
|
|
attribute :font_color, default: "#222222"
|
|
|
|
translates :title, touch: true
|
|
translates :description, touch: true
|
|
include Globalizable
|
|
|
|
validates_translation :title, presence: true, length: { minimum: 2 }
|
|
validates_translation :description, presence: true
|
|
|
|
validates :target_url, presence: true
|
|
validates :post_started_at, presence: true
|
|
validates :post_ended_at, presence: true
|
|
|
|
has_many :sections
|
|
has_many :web_sections, through: :sections
|
|
|
|
scope :with_active, -> { where("post_started_at <= :date and post_ended_at >= :date", date: Date.current) }
|
|
scope :with_inactive, -> { where.not(id: with_active) }
|
|
scope :in_section, ->(section_name) { joins(:web_sections, :sections).where("web_sections.name ilike ?", section_name) }
|
|
end
|