mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-10 13:34:59 +00:00
78914e0511
This gets the plugin running again without name collisions. A solid starting point
11 lines
222 B
Ruby
11 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ::DiscoursePatrons
|
|
PLUGIN_NAME = "discourse-patrons"
|
|
|
|
class Engine < ::Rails::Engine
|
|
engine_name DiscoursePatrons::PLUGIN_NAME
|
|
isolate_namespace DiscoursePatrons
|
|
end
|
|
end
|