Skip to content
Snippets Groups Projects
Commit 55c4996b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Merge branch 'cache-broadcast-message-current' into 'master'

Cache BroadcastMessage.current. Fixes #12770



See merge request !2633
parents f862b4ae a6d6cfaf
No related branches found
No related tags found
No related merge requests found
Pipeline #
Loading
Loading
@@ -26,7 +26,9 @@ class BroadcastMessage < ActiveRecord::Base
default_value_for :font, '#FFFFFF'
 
def self.current
where("ends_at > :now AND starts_at <= :now", now: Time.zone.now).last
Rails.cache.fetch("broadcast_message_current", expires_in: 1.minute) do
where("ends_at > :now AND starts_at <= :now", now: Time.zone.now).last
end
end
 
def active?
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment