Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/dlangbot/app.d
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ void contributorStatsOverall(HTTPServerRequest req, HTTPServerResponse res)

void contributorStatsPerCycle(HTTPServerRequest req, HTTPServerResponse res)
{
contributorStats(req, res, "2022-01-01 00:00:00.000000", "2022-03-01 00:00:00.000000");
contributorStats(req, res, "2022-01-01 00:00:00.000000", "2022-04-01 00:00:00.000000");
}

private void contributorStats(HTTPServerRequest req, HTTPServerResponse res,
Expand Down
3 changes: 2 additions & 1 deletion source/dlangbot/database.d
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ string[][] getContributorsStats(string startDate, string endDate)
username = name;

if (username.among("ibuclaw", "WalterBright", "RazvanN7", "CyberShadow",
"kinke", "andralex", "maxhaton", "atilaneves", "mdparker", "Geod24"))
"kinke", "andralex", "maxhaton", "atilaneves", "mdparker",
"Geod24", "dkorpel"))
username = username ~ "*";
ret ~= [username, to!string(points)];
}
Expand Down