Files
discourse-rewind/app/controllers/my_plugin_module/examples_controller.rb
T

12 lines
211 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module ::MyPluginModule
class ExamplesController < ::ApplicationController
requires_plugin PLUGIN_NAME
def index
render json: { hello: "world" }
end
end
end