Skip to content

Commit 5e56d21

Browse files
authored
Merge pull request #293 from RazvanN7/minor_updates
Fix cycle date + add dkorpel to the list of foundation members
2 parents 7270417 + 6ebd136 commit 5e56d21

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

source/dlangbot/app.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ void contributorStatsOverall(HTTPServerRequest req, HTTPServerResponse res)
465465

466466
void contributorStatsPerCycle(HTTPServerRequest req, HTTPServerResponse res)
467467
{
468-
contributorStats(req, res, "2022-01-01 00:00:00.000000", "2022-03-01 00:00:00.000000");
468+
contributorStats(req, res, "2022-01-01 00:00:00.000000", "2022-04-01 00:00:00.000000");
469469
}
470470

471471
private void contributorStats(HTTPServerRequest req, HTTPServerResponse res,

source/dlangbot/database.d

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ string[][] getContributorsStats(string startDate, string endDate)
120120
username = name;
121121

122122
if (username.among("ibuclaw", "WalterBright", "RazvanN7", "CyberShadow",
123-
"kinke", "andralex", "maxhaton", "atilaneves", "mdparker", "Geod24"))
123+
"kinke", "andralex", "maxhaton", "atilaneves", "mdparker",
124+
"Geod24", "dkorpel"))
124125
username = username ~ "*";
125126
ret ~= [username, to!string(points)];
126127
}

0 commit comments

Comments
 (0)