Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dashboard_helper.rb « gitlab « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2211c93999e3cc4fa128fd2982b89b447ce41bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
module Gitlab
  module DashboardHelper
    def assigned_issues_dashboard_path
      issues_dashboard_path(assignee_id: current_user.id)
    end

    def assigned_mrs_dashboard_path
      merge_requests_dashboard_path(assignee_id: current_user.id)
    end
  end
end