mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 01:10:43 +08:00
Backport of #41948 to release/2026.1. --- discourse-search-banner, discourse-invite-tokens, discourse-push-notifications, discourse-vk-auth Co-authored-by: Jarek Radosz <jarek@cvx.dev>
20 lines
466 B
Ruby
Vendored
20 lines
466 B
Ruby
Vendored
# 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-topic-thumbnails
|
|
discourse-unanswered-filter
|
|
discourse-versatile-banner
|
|
DiscoTOC
|
|
unformatted-code-detector
|
|
],
|
|
).to_a
|
|
end
|