Open billyrt opened 4 years ago
If install plugin 1.0.0 as is, then it will cause error when loading redmine.
Something like undefined method 'before_filter' for AuthorsController:Class
undefined method 'before_filter' for AuthorsController:Class
Then if just fix
before_filter :require_login To before_action :require_login
before_filter :require_login
before_action :require_login
Then it will work as normal.
If install plugin 1.0.0 as is, then it will cause error when loading redmine.
Something like
undefined method 'before_filter' for AuthorsController:Class
Then if just fix
before_filter :require_login
Tobefore_action :require_login
Then it will work as normal.