mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 12:46:33 +08:00
9 lines
222 B
Ruby
9 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseAssign
|
|
class Engine < ::Rails::Engine
|
|
engine_name PLUGIN_NAME
|
|
isolate_namespace DiscourseAssign
|
|
config.autoload_paths << File.join(config.root, "lib")
|
|
end
|
|
end
|