Show commits as 'Commit' instead of 'Grit::Commit'
Conflicts: app/helpers/dashboard_helper.rb
This commit is contained in:
parent
85468fb4ce
commit
e608eacc4b
1 changed files with 6 additions and 3 deletions
|
@ -19,12 +19,15 @@ module DashboardHelper
|
|||
end
|
||||
|
||||
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 "Issue" then object.title
|
||||
when "Grit::Commit" then object.safe_message
|
||||
when "Commit" then object.safe_message
|
||||
else return "Project Wall"
|
||||
end
|
||||
"[#{object.class.name}] #{truncate(sanitize(title, :tags => []), :length => 60)} "
|
||||
|
||||
"[#{klass}] #{truncate(sanitize(title, :tags => []), :length => 60)} "
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue