[WEB-5054]feat: added activity filters for state and assignee activities (#7918)

* feat: added activity filters for state and assignee

* chore: removed unused funtion

* chore: lint fix
This commit is contained in:
Vamsi Krishna 2025-10-15 17:12:03 +05:30 committed by GitHub
parent f9cca8e2cb
commit 2b106cbd66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 70 additions and 13 deletions

View file

@ -56,6 +56,21 @@ export type TIssueActivityComment =
activity_type: "ACTIVITY";
created_at?: string;
}
| {
id: string;
activity_type: "STATE";
created_at?: string;
}
| {
id: string;
activity_type: "ASSIGNEE";
created_at?: string;
}
| {
id: string;
activity_type: "DEFAULT";
created_at?: string;
}
| {
id: string;
activity_type: "WORKLOG";