gitlab-org--gitlab-foss/app/helpers/gitlab/dashboard_helper.rb

12 lines
265 B
Ruby

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