blob: c25b54eadc693650412f1e2280e009de6748f659 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|