From de44fb9427035c2684d5b0882ae9caa4c621d86f Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Thu, 28 Apr 2011 14:19:00 -0700 Subject: Show the author of the latest commit on the dashboard, fixes #40 --- lib/jitterbug.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/jitterbug.pm b/lib/jitterbug.pm index 1bf3aab..0febc01 100644 --- a/lib/jitterbug.pm +++ b/lib/jitterbug.pm @@ -39,7 +39,9 @@ sub _get_projects { if ($last_commit) { # XXX see what data to store here - $proj_desc->{last_build} = from_json($last_commit->content); + my $json = from_json($last_commit->content); + $proj_desc->{last_build} = $json; + $proj_desc->{last_build_author} = $json->{author}{name}; } push @projects, $proj_desc; -- cgit 1.4.1