12 lines
211 B
Ruby
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
|