mirror of
https://github.com/discourse/discourse-rewind.git
synced 2025-07-06 22:02:12 +00:00
29 lines
583 B
Ruby
29 lines
583 B
Ruby
# frozen_string_literal: true
|
|
|
|
# name: discourse-rewind
|
|
# about: TODO
|
|
# meta_topic_id: TODO
|
|
# version: 0.0.1
|
|
# authors: Discourse
|
|
# url: TODO
|
|
# required_version: 2.7.0
|
|
|
|
enabled_site_setting :discourse_rewind_enabled
|
|
|
|
register_svg_icon "repeat"
|
|
|
|
register_asset "stylesheets/common/_index.scss"
|
|
register_asset "stylesheets/mobile/_index.scss", :mobile
|
|
|
|
module ::DiscourseRewind
|
|
PLUGIN_NAME = "discourse-rewind"
|
|
|
|
def self.public_asset_path(name)
|
|
File.expand_path(File.join(__dir__, "public", name))
|
|
end
|
|
end
|
|
|
|
require_relative "lib/discourse_rewind/engine"
|
|
|
|
after_initialize {}
|