Defect #35455
Require redmine/sort_criteria globally
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | Plugin API | |||
Target version: | 5.0.0 | |||
Resolution: | Fixed | Affected version: |
Description
We currently have an issue with Redmine::SortCriteria
being loaded only when Query
gets loaded.
We use and save Redmine::SortCriteria
in a plugin, which leads to errors when we try to load objects from the DB referencing those although Query
has not been loaded yet. This leads to errors in our Redmine until someone loads a page with a query on the corresponding Redmine instance serving the request.
Associated revisions
Require redmine/sort_criteria globally (#35455).
Patch by Felix Schäfer.
History
#1
Updated by Felix Schäfer about 1 year ago
- File 35455.patch
added
The attached patch moves the require 'redmine/sort_criteria'
to the global requires in lib/redmine.rb
instead of loading it in-place in the app/models/query.rb
.
#2
Updated by Go MAEDA about 1 year ago
- Category set to Plugin API
- Target version set to 5.0.0
Setting the target version to 5.0.0.
#3
Updated by Go MAEDA about 1 year ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
- Resolution set to Fixed
Committed the patch. Thank you.