We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We patched our copy of redmine_mylyn_connector b/c we have over 700 projects and most of them live for a brief period and then are closed.
In projects_controller.rb @projects = Project.find(:all, :joins => :enabled_modules, :conditions => [ "enabled_modules.name = 'issue_tracking' AND #{Project.visible_condition(User.current)}"])
Changed to @projects = Project.active.visible.all
I do not personally think filtering out projects w/o tasks is necessary, but in any case, the addition of ".active" would be appreciated
Thanks!
The text was updated successfully, but these errors were encountered:
I second that this would be a very useful patch here.
Sorry, something went wrong.
No branches or pull requests
We patched our copy of redmine_mylyn_connector b/c we have over 700 projects and most of them live for a brief period and then are closed.
In projects_controller.rb
@projects = Project.find(:all,
:joins => :enabled_modules,
:conditions => [ "enabled_modules.name = 'issue_tracking' AND #{Project.visible_condition(User.current)}"])
Changed to
@projects = Project.active.visible.all
I do not personally think filtering out projects w/o tasks is necessary, but in any case, the addition of ".active" would be appreciated
Thanks!
The text was updated successfully, but these errors were encountered: