1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

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
This commit is contained in:
Jean-Philippe Lang 2018-01-08 17:53:50 +00:00
parent 4c0638c5f9
commit ce066b0567
2 changed files with 0 additions and 3 deletions

View File

@ -1,6 +1,4 @@
class <%= @controller_class %>Controller < ApplicationController class <%= @controller_class %>Controller < ApplicationController
unloadable
<% actions.each do |action| -%> <% actions.each do |action| -%>
def <%= action %> def <%= action %>

View File

@ -1,3 +1,2 @@
class <%= @model_class %> < ActiveRecord::Base class <%= @model_class %> < ActiveRecord::Base
unloadable
end end