Files
Redmine/lib/generators/redmine_plugin_controller/templates/controller.rb.erb
Jean-Philippe Lang ce066b0567 Removes 'unloadable' from plugin templates (#20513).
Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@17160 e93f8b46-1217-0410-a6f0-8f06a7374b81
2018-01-08 17:53:50 +00:00

8 lines
139 B
Plaintext

class <%= @controller_class %>Controller < ApplicationController
<% actions.each do |action| -%>
def <%= action %>
end
<% end -%>
end