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

examples_controller.rb (211B)


      1 # frozen_string_literal: true
      2 
      3 module ::MyPluginModule
      4   class ExamplesController < ::ApplicationController
      5     requires_plugin PLUGIN_NAME
      6 
      7     def index
      8       render json: { hello: "world" }
      9     end
     10   end
     11 end