leeenglestone / CodeReviewChecklist

An online checklist guide for performing code reviews
https://www.codereviewchecklist.com
MIT License
13 stars 8 forks source link

Provide link to GitHub project? Encourage Pull Requests? #14

Closed leeenglestone closed 4 years ago

leeenglestone commented 4 years ago

It should be obvious that the site is open source and encourages contributions

leeenglestone commented 4 years ago

We could use this code to return and present the issues

http://jsfiddle.net/bso6xLee/2/

var urlToGetAllOpenBugs = "https://api.github.com/repos/leeenglestone/codereviewchecklist/issues?state=open";

$(document).ready(function () {
    $.getJSON(urlToGetAllOpenBugs, function (allIssues) {
        $("div").append("found " + allIssues.length + " issues</br>");
        $.each(allIssues, function (i, issue) {
            $("div")
                .append("<b>" + issue.number + " - " + issue.title + "</b></br>")
                .append("created at: " + issue.created_at + "</br>")
                .append(issue.body + "</br></br>");
        });
    });
});