discourse-calendar-webcal

Webcal endpoint for the discourse-calendar plugin
git clone git://archive.git.mtrnord.blog/MTRNord/discourse-calendar-webcal.git
Log | Files | Refs | README | LICENSE

engine.rb (222B)


      1 # frozen_string_literal: true
      2 
      3 module ::MyPluginModule
      4   class Engine < ::Rails::Engine
      5     engine_name PLUGIN_NAME
      6     isolate_namespace MyPluginModule
      7     config.autoload_paths << File.join(config.root, "lib")
      8   end
      9 end