Actions
Patch #27963
closedRemove 'unloadable' from bundled sample plugin
Description
Pretty straightforward. After #20513, the statement should be removed from the bundled example plugin too (i.e. r1282 should be reverted). The following raw patch (against source:/trunk@17169) takes care of this:
Index: extra/sample_plugin/app/controllers/example_controller.rb
===================================================================
--- extra/sample_plugin/app/controllers/example_controller.rb (revision 17169)
+++ extra/sample_plugin/app/controllers/example_controller.rb (working copy)
@@ -1,7 +1,5 @@
# Sample plugin controller
class ExampleController < ApplicationController
- unloadable
-
layout 'base'
before_action :find_project, :authorize
menu_item :sample_plugin
Related issues
Updated by Mischa The Evil almost 7 years ago
- Related to Defect #20513: Unloadable plugin convention breaks with Rails 4.2.3 added
Updated by Go MAEDA almost 7 years ago
- Status changed from New to Resolved
- Assignee set to Go MAEDA
- Target version set to 3.4.5
Committed to the trunk. Thank you for pointing it out.
Actions