discourse/lib/theme_metadata.rb
Alan Guo Xiang Tan 6a2e39651d
DEV: Add discourse-tag-icons to official themes list (#37369)
This is so that system tests for the theme will run as part of core's CI
workflow.
2026-01-29 14:18:03 +08:00

22 lines
526 B
Ruby

# frozen_string_literal: true
class ThemeMetadata
OFFICIAL_THEMES =
Set.new(
%w[
discourse-brand-header
discourse-category-banners
discourse-clickable-topic
discourse-custom-header-links
Discourse-easy-footer
discourse-gifs
discourse-tag-icons
discourse-topic-thumbnails
discourse-search-banner
discourse-unanswered-filter
discourse-versatile-banner
DiscoTOC
unformatted-code-detector
],
).to_a
end