-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
issue-45 exop #49
base: master
Are you sure you want to change the base?
issue-45 exop #49
Conversation
@sobolevn, please review |
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.
Thanks for you work! Can you please explain what has changed in the library?
And what are other solutions to fix the upgrade?
@@ -8,7 +8,10 @@ defmodule Kira.Projects.Commands.QueueIssue do | |||
alias Kira.Projects.Queries.IssueQueries | |||
alias Kira.Repo | |||
|
|||
parameter(:issue_uid, type: :integer) | |||
parameter(:project_uid, type: :integer, required: false) |
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.
Why do we need all these params? What has changed in the library?
@@ -8,7 +8,10 @@ defmodule Kira.Projects.Commands.QueueIssue do | |||
alias Kira.Projects.Queries.IssueQueries | |||
alias Kira.Repo | |||
|
|||
parameter(:issue_uid, type: :integer) | |||
parameter(:project_uid, type: :integer, required: false) | |||
parameter(:issue_uid, type: :integer, required: true) |
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.
Only issue_uid
is used directly. Other params are unused.
@@ -11,7 +11,10 @@ defmodule Kira.Projects.Services.NoteCommands.QueueIssue do | |||
# TODO: move to configuration | |||
@bot_username "@kira-bot" | |||
|
|||
parameter(:note_text, type: :string) | |||
parameter(:project_uid, type: :integer, required: false) |
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.
The same here. Why do we need al of them when we only use note_text
?
Since 1.3 exop had breaking changes for |
Checklist
Issues
Refs #45