Skip to content
Snippets Groups Projects
Commit 4454b6c5 authored by Ariejan de Vroom's avatar Ariejan de Vroom
Browse files

Show commits as 'Commit' instead of 'Grit::Commit'

parent 6e7e01c7
No related branches found
No related tags found
Loading
Loading
@@ -19,12 +19,15 @@ module DashboardHelper
Loading
@@ -19,12 +19,15 @@ module DashboardHelper
end end
   
def dashboard_feed_title(object) def dashboard_feed_title(object)
title = case object.class.name.to_s klass = object.class.to_s.split("::").last
title = case klass
when "Note" then markdown(object.note) when "Note" then markdown(object.note)
when "Issue" then object.title when "Issue" then object.title
when "Grit::Commit" then object.safe_message when "Commit" then object.safe_message
else "" else ""
end end
"[#{object.class.name}] #{truncate(sanitize(title, :tags => []), :length => 60)} "
"[#{klass}] #{truncate(sanitize(title, :tags => []), :length => 60)} "
end end
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment