2014-09-02 14:37:02 +02:00
|
|
|
module DashboardHelper
|
2015-04-26 09:18:37 +02:00
|
|
|
def assigned_issues_dashboard_path
|
|
|
|
issues_dashboard_path(assignee_id: current_user.id)
|
2014-09-02 14:37:02 +02:00
|
|
|
end
|
|
|
|
|
2015-04-26 09:18:37 +02:00
|
|
|
def assigned_mrs_dashboard_path
|
|
|
|
merge_requests_dashboard_path(assignee_id: current_user.id)
|
2014-09-02 14:37:02 +02:00
|
|
|
end
|
|
|
|
end
|