mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
18 lines
444 B
Ruby
18 lines
444 B
Ruby
# 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
|