mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 21:56:19 +10:00
Include 'issue'/'merge request' in link
This commit is contained in:
@@ -7,14 +7,9 @@ module TodosHelper
|
||||
current_user.todos.done.count
|
||||
end
|
||||
|
||||
def todo_action_name(todo)
|
||||
target = todo.target_type.titleize.downcase
|
||||
|
||||
[todo.action_name, target].join(" ")
|
||||
end
|
||||
|
||||
def todo_target_link_html(todo)
|
||||
link_to "##{todo.target_iid}", todo_target_path(todo)
|
||||
def todo_target_link(todo)
|
||||
target = todo.target_type.titleize.downcase
|
||||
link_to "#{target} #{todo.target.to_reference}", todo_target_path(todo)
|
||||
end
|
||||
|
||||
def todo_target_path(todo)
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
%span.author_name
|
||||
= link_to_author todo
|
||||
%span.todo_label
|
||||
= todo_action_name(todo)
|
||||
= todo_target_link_html(todo)
|
||||
= todo.action_name
|
||||
= todo_target_link(todo)
|
||||
|
||||
· #{time_ago_with_tooltip(todo.created_at)}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user