2014-09-02 18:07:02 +05:30
|
|
|
module DashboardHelper
|
2015-04-26 12:48:37 +05:30
|
|
|
def assigned_issues_dashboard_path
|
|
|
|
issues_dashboard_path(assignee_id: current_user.id)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def assigned_mrs_dashboard_path
|
|
|
|
merge_requests_dashboard_path(assignee_id: current_user.id)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|