mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
23 lines
536 B
Ruby
23 lines
536 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ThemeMetadata
|
||
|
OFFICIAL_THEMES =
|
||
|
Set.new(
|
||
|
%w[
|
||
|
discourse-brand-header
|
||
|
discourse-category-banners
|
||
|
discourse-clickable-topic
|
||
|
discourse-color-scheme-toggle
|
||
|
discourse-custom-header-links
|
||
|
Discourse-easy-footer
|
||
|
discourse-gifs
|
||
|
discourse-topic-thumbnails
|
||
|
discourse-search-banner
|
||
|
discourse-unanswered-filter
|
||
|
discourse-versatile-banner
|
||
|
DiscoTOC
|
||
|
unformatted-code-detector
|
||
|
],
|
||
|
).to_a
|
||
|
end
|