FEATURE: Bundle discourse-checklist plugin into core (#22927)

Formerly https://github.com/discourse/discourse-checklist
This commit is contained in:
David Taylor
2023-08-02 10:17:24 +01:00
committed by GitHub
parent 906bfdebea
commit 2d4be458a5
109 changed files with 1631 additions and 1 deletions

View File

@ -0,0 +1,17 @@
# frozen_string_literal: true
# name: checklist
# about: Add checklist support to Discourse
# version: 1.0
# authors: Discourse Team
# url: https://github.com/discourse/discourse/tree/main/plugins/checklist
enabled_site_setting :checklist_enabled
register_asset "stylesheets/checklist.scss"
register_svg_icon "spinner"
after_initialize do
["../lib/checklist_syntax_migrator.rb"].each { |path| load File.expand_path(path, __FILE__) }
end