16 lines
313 B
Plaintext
16 lines
313 B
Plaintext
|
module <%= classified_name %>
|
||
|
class ActionsController < ::ApplicationController
|
||
|
requires_plugin <%= classified_name %>
|
||
|
|
||
|
before_action :ensure_logged_in
|
||
|
|
||
|
def index
|
||
|
render_json_dump({ actions: [] })
|
||
|
end
|
||
|
|
||
|
def show
|
||
|
render_json_dump({ action: { id: params[:id] } })
|
||
|
end
|
||
|
end
|
||
|
end
|