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

12 lines
265 B
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
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