summaryrefslogtreecommitdiff
path: root/app/models/dashboard_milestone.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-05-281-19/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-031-0/+4
|
* Add project milestone link to dashboard milestonesccr/49289_milestone_linkFatih Acet2018-12-201-3/+7
| | | | | | One of the steps to deprecate dashboard milestones. Links do dashboard milestone are replaced with links for each project milestone
* Enable frozen string in app/models/*.rbrepo-forks/gitlab-ce-frozen-string-enable-app-modelsgfyoung2018-07-261-0/+2
| | | | Partially addresses #47424.
* replace `is_dashboard_milestone?` with `dashboard_milestone?`Maxim Rydkin2017-08-291-1/+1
|
* Native group milestonesFelipe Artur2017-07-071-0/+4
|
* Speed up dashboard milestone index by scoping IssuesFinder to user ↵speed-up-dashboard-milestone-indexAdam Niedzielski2017-01-161-0/+5
authorized projects It improves performance in dashboard milestone index page by passing a hint to "IssuesFinder". "IssuesFinder" generates a more performant query when it is limited to authorized projects for user. In the dashboard we already limit the projects to these authorized for user (see "Dashboard::ApplicationController#projects"), so we can safely pass this option to "IssuesFinder".