-
Notifications
You must be signed in to change notification settings - Fork 328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor codebase to async/await - todo task get
until yammer message add
, Closes #5116
#5138
Refactor codebase to async/await - todo task get
until yammer message add
, Closes #5116
#5138
Conversation
Thank you, we'll review it ASAP. |
@nicodecleyre lets rebase and resolve the conflicts before we proceed 👍 |
405e4ce
to
fc1ca01
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are on the right track 👍
Let's recheck a couple of details before we merge
fc1ca01
to
cb5336f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
checked locally ✅
LGTM 👍
one small comment I will resolve it myself when merging
return options.listId as string; | ||
} | ||
|
||
private async removeToDoTask(args: CommandArgs): Promise<void> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as best practice we should pass options
not args
private async removeToDoTask(args: CommandArgs): Promise<void> { | |
private async removeToDoTask(options: GlobalOptions): Promise<void> { |
ready to merge 🚀 |
merged manually. Awesome work 👏 |
Closes #5116