-
Notifications
You must be signed in to change notification settings - Fork 0
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
HL-175: Delete the deprecated associateEntity
and disassociateEntity
actions
#244
Conversation
…ty` Provider Actions
@@ -165,7 +165,7 @@ If needed, you could test these APIs directly by mimicking Jira backend. | |||
"id": "${FILE_KEY}", | |||
"ari": "NOT_USED" | |||
}, | |||
"associateWith": { | |||
"associatedWith": { |
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.
note: Fixed a mistake in the documentation.
@@ -17,17 +17,6 @@ export interface AtlassianProviderUser { | |||
readonly id: string; | |||
} | |||
|
|||
export class AtlassianAssociation { |
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.
note: The whole concept of AtlassianAssociation
has been removed from the domain of this app 🥳
CC: @stannnous
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.
note: This code is not related to the deprecated actions but it is not used and can be safely deleted.
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.
i love delete
Context
The PR removes deletes the actions deprecated within #235.
Changes
associateEntity
anddisassociateEntity
actions.Notes
V2
postfix (e.g.,entitiesRouterV2
), which corresponds to the new implementation. While the PR deletes the old implementation it does not rename modules with theV2
postfix to avoid extra changes and make code review simpler. If needed, please, consider removing theV2
postfix in a separate PR.