Added by Hubert Alejandro over 10 years ago
I am writing several plugins that share common methods across the controllers. Is there a way to define a parent class that all of the plugins can then inherit from? I am thinking of something like the following
ParentController < ApplicationController
PluginController < ParentController
Is this setup possible without mucking with the core Redmine code? Thanks!