Commit 8e9a115a authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

commit time sort

parent 9352a3e6
...@@ -64,7 +64,7 @@ class ProjectsController < ApplicationController ...@@ -64,7 +64,7 @@ class ProjectsController < ApplicationController
@heads = @project.repo.heads @heads = @project.repo.heads
@commits = @heads.map do |h| @commits = @heads.map do |h|
@project.repo.log(h.name, nil, :since => @date) @project.repo.log(h.name, nil, :since => @date)
end.flatten.uniq { |c| c.id } end.flatten.uniq { |c| c.id }.sort { |x, y| x.committed_date <=> x.committed_date }
@messages = project.notes.last_week.limit(40).order("created_at DESC") @messages = project.notes.last_week.limit(40).order("created_at DESC")
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment