mirror of
https://github.com/discourse/discourse-rewind.git
synced 2025-10-16 15:18:48 +00:00
21 lines
395 B
Ruby
21 lines
395 B
Ruby
# frozen_string_literal: true
|
|
|
|
# name: discourse-plugin-name
|
|
# about: TODO
|
|
# version: 0.0.1
|
|
# authors: Discourse
|
|
# url: TODO
|
|
# required_version: 2.7.0
|
|
|
|
enabled_site_setting :plugin_name_enabled
|
|
|
|
module ::MyPluginModule
|
|
PLUGIN_NAME = "discourse-plugin-name"
|
|
end
|
|
|
|
require_relative "lib/my_plugin_module/engine"
|
|
|
|
after_initialize do
|
|
# Code which should run after Rails has finished booting
|
|
end
|