Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #8 from mptap/patch-1
Browse files Browse the repository at this point in the history
Fixes #7 Added `created` and `updated` dates to list of issues
  • Loading branch information
mcwhittemore committed Nov 20, 2017
2 parents e06ee15 + 7625e20 commit 00e6987
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@ function findIssues(opts, page, numBefore) {
url: i.html_url,
title: i.title,
user: i.user.login,
type: urlParts[urlParts.length - 2]
type: urlParts[urlParts.length - 2],
created: i.created_at,
updated: i.updated_at
};
});
var numNow = numBefore + issues.length;
Expand Down

0 comments on commit 00e6987

Please sign in to comment.