Skip to content

Commit 5c256ae

Browse files
committed
this produces the current PDF, without user attribution
1 parent 2e1d1ed commit 5c256ae

File tree

3 files changed

+3453
-3
lines changed

3 files changed

+3453
-3
lines changed

src/output/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class base {
206206

207207
this.days = days;
208208
this.daysMoment = daysMoment;
209-
this.users = _.mapObject(users, user => this.config.toHumanReadable(user, 'stats'));
209+
/* this.users = _.mapObject(users, user => this.config.toHumanReadable(user, 'stats')); */
210210
this.projects = _.mapObject(projects, project => this.config.toHumanReadable(project, 'stats'));
211211
this.stats = {
212212
'total estimate': this.config.toHumanReadable(totalEstimate, 'stats'),

src/output/markdown.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class markdown extends Base {
3030
stats += `\n`;
3131
}
3232

33-
_.each(this.users, (time, name) => stats += `\n* **${name}**: ${time}`);
33+
/* _.each(this.users, (time, name) => stats += `\n* **${name}**: ${time}`); */
3434

3535
this.write(stats.substr(1));
3636
}
@@ -69,4 +69,4 @@ class markdown extends Base {
6969
}
7070
}
7171

72-
module.exports = markdown;
72+
module.exports = markdown;

0 commit comments

Comments
 (0)