Skip to content

Commit be958a2

Browse files
author
Adrián Escoms
committed
Only get the updated issues from the selected date (if exists) in order
to reduce the amount of issues to get from GL.
1 parent 4a825b1 commit be958a2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/models/report.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ class report extends Base {
4848
params.push(`milestone=${this.config.get('milestone')}`);
4949
}
5050

51+
if (this.config.get('from')) {
52+
params.push(`updated_after=${this.config.get('from')}`)
53+
}
54+
5155
return `?${params.join('&')}`;
5256
}
5357

0 commit comments

Comments
 (0)