Feature #27313
openMore custom queries on My page
0%
Description
According to #1565#note-88 created issue. Lets increase number of custom queries on My page up to 10.
Or add an administrative setting to set number of possible blocks with queries (certainly with some maximum).
Related issues
Updated by Toshi MARUYAMA about 7 years ago
- Tracker changed from Patch to Feature
- Subject changed from More custom queries on My page to More custom queries on My page
- Description updated (diff)
Updated by Olivier Houdas about 6 years ago
A setting to control the maximum number of queries sounds a must to me. I had the case once of a user who had put 5 or even more blocks in his page, and who had used a Chrome plugin to refresh his page every minute. It put our redmine server on its knees...
Of course, when I told him to find another way to be aware of changes quickly, he found another solution, but it is a risk.
Also note that the redmine_my_page plugin works quite well.
Updated by Marius BĂLTEANU about 6 years ago
- Related to Feature #1565: Custom query on My page added
Updated by Go MAEDA almost 6 years ago
- Assignee set to Jean-Philippe Lang
- Target version set to 4.0.0
Jean-Philippe, what do you think about increasing the maximum number of "issuequery" block?
Index: lib/redmine/my_page.rb
===================================================================
--- lib/redmine/my_page.rb (revision 17668)
+++ lib/redmine/my_page.rb (working copy)
@@ -25,7 +25,7 @@
'issuesassignedtome' => {:label => :label_assigned_to_me_issues},
'issuesreportedbyme' => {:label => :label_reported_issues},
'issueswatched' => {:label => :label_watched_issues},
- 'issuequery' => {:label => :label_issue_plural, :max_occurs => 3},
+ 'issuequery' => {:label => :label_issue_plural, :max_occurs => 5},
'news' => {:label => :label_news_latest},
'calendar' => {:label => :label_calendar},
'documents' => {:label => :label_document_plural},
</diff>
Updated by Jean-Philippe Lang almost 6 years ago
- Assignee deleted (
Jean-Philippe Lang) - Target version changed from 4.0.0 to Candidate for next major release
We should probably load content asynchronously before raising the number of queries that can be displayed.