Files
discourse-hledger/app/controllers/my_plugin_module/examples_controller.rb
T
2026-09-26 16:22:16 +02:00

12 lines
211 B
Ruby

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