chore: remove unwanted changes

This commit is contained in:
Muhsin Keloth
2024-05-21 12:42:07 +05:30
parent d278107133
commit a2dab6a3a8
3 changed files with 2 additions and 25 deletions
@@ -41,10 +41,6 @@ class LinearAPI extends ApiClient {
searchIssues(query) {
return axios.get(`${this.url}/search_issue?q=${query}`);
}
createComment(data) {
return axios.post(`${this.url}/create_comment`, data);
}
}
export default new LinearAPI();
@@ -94,7 +94,6 @@ import keyboardEventListenerMixins from 'shared/mixins/keyboardEventListenerMixi
import { findSnoozeTime } from 'dashboard/helper/snoozeHelpers';
import WootDropdownItem from 'shared/components/ui/dropdown/DropdownItem.vue';
import WootDropdownMenu from 'shared/components/ui/dropdown/DropdownMenu.vue';
import LinearAPI from 'dashboard/api/integrations/linear';
import wootConstants from 'dashboard/constants/globals';
import {
@@ -120,10 +119,7 @@ export default {
};
},
computed: {
...mapGetters({
currentChat: 'getSelectedChat',
currentUser: 'getCurrentUser',
}),
...mapGetters({ currentChat: 'getSelectedChat' }),
isOpen() {
return this.currentChat.status === wootConstants.STATUS_TYPE.OPEN;
},
@@ -252,7 +248,6 @@ export default {
snoozedUntil,
})
.then(() => {
this.updateLinearComment(status);
this.showAlert(this.$t('CONVERSATION.CHANGE_STATUS'));
this.isLoading = false;
});
@@ -261,20 +256,6 @@ export default {
const ninja = document.querySelector('ninja-keys');
ninja.open({ parent: 'snooze_conversation' });
},
async updateLinearComment(status) {
if (status !== 'resolved') {
return;
}
const response = await LinearAPI.getLinkedIssue(this.currentChat.id);
const { data: issues } = response;
const linkedIssue = issues && issues.length ? issues[0] : null;
if (linkedIssue) {
await LinearAPI.createComment({
issue_id: linkedIssue.issue.id,
comment: `*The conversation has been resolved by **${this.currentUser.name}***`,
});
}
},
},
};
</script>