├── .discourse-compatibility ├── README.md └── plugin.rb /.discourse-compatibility: -------------------------------------------------------------------------------- 1 | < 3.2.0.beta1-dev: d94e58c3060ee7ca0fe76339215ed9456d5f4ea4 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Checklist Plugin - Interactive Checkboxes made Simple 2 | 3 | This plugin has now been bundled into Discourse core. 4 | -------------------------------------------------------------------------------- /plugin.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | # name: discourse-checklist 4 | # about: Add checklist support to Discourse 5 | # version: 0.4.1 6 | # authors: Matthew Wilkin 7 | # url: https://github.com/discourse/discourse-checklist 8 | # transpile_js: true 9 | 10 | after_initialize do 11 | AdminDashboardData.add_problem_check do 12 | "The discourse-checklist plugin has been integrated into discourse core. Please remove the plugin from your app.yml and rebuild your container." 13 | end 14 | end 15 | --------------------------------------------------------------------------------