mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
10 lines
231 B
Ruby
10 lines
231 B
Ruby
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
|