mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
FIX: use cache to store custom emoji
This commit is contained in:
parent
45dbdb6896
commit
23aede6eb5
|
@ -20,15 +20,15 @@ class Emoji
|
|||
end
|
||||
|
||||
def self.all
|
||||
@all ||= standard | custom
|
||||
Discourse.cache.fetch("all", family: "emoji") { standard | custom }
|
||||
end
|
||||
|
||||
def self.standard
|
||||
@standard ||= load_standard
|
||||
Discourse.cache.fetch("standard", family: "emoji") { load_standard }
|
||||
end
|
||||
|
||||
def self.custom
|
||||
@custom ||= load_custom
|
||||
Discourse.cache.fetch("custom", family: "emoji") { load_custom }
|
||||
end
|
||||
|
||||
def self.create_from_path(path)
|
||||
|
@ -61,8 +61,7 @@ class Emoji
|
|||
end
|
||||
|
||||
def self.clear_cache
|
||||
@custom = nil
|
||||
@all = nil
|
||||
Discourse.cache.delete_by_family("emoji")
|
||||
end
|
||||
|
||||
def self.db_file
|
||||
|
|
|
@ -5,6 +5,8 @@ class EmojiSetSiteSetting < EnumSiteSetting
|
|||
# fix the URLs when changing the site setting
|
||||
DiscourseEvent.on(:site_setting_saved) do |site_setting|
|
||||
if site_setting.name.to_s == "emoji_set" && site_setting.value_changed?
|
||||
Emoji.clear_cache
|
||||
|
||||
before = "/images/emoji/#{site_setting.value_was}/"
|
||||
after = "/images/emoji/#{site_setting.value}/"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user