mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:37:06 +08:00
97a812f022
Most of the core plugins were already hidden, this hides chat, styleguide, and checklist to avoid potential confusion for end users. Also removes respond_to? :hide_plugin, since that API has been in place for a while now.
21 lines
543 B
Ruby
21 lines
543 B
Ruby
# frozen_string_literal: true
|
|
|
|
# name: styleguide
|
|
# about: Preview how Widgets are Styled in Discourse
|
|
# version: 0.2
|
|
# author: Robin Ward
|
|
|
|
register_asset "stylesheets/styleguide.scss"
|
|
enabled_site_setting :styleguide_enabled
|
|
hide_plugin
|
|
|
|
load File.expand_path("../lib/styleguide/engine.rb", __FILE__)
|
|
|
|
Discourse::Application.routes.append { mount ::Styleguide::Engine, at: "/styleguide" }
|
|
|
|
after_initialize do
|
|
register_asset_filter do |type, request, opts|
|
|
(opts[:path] || "").start_with?("#{Discourse.base_path}/styleguide")
|
|
end
|
|
end
|