2023-12-07 12:43:27 +00:00
|
|
|
import { IUserLite } from "./users";
|
|
|
|
|
|
|
|
export interface IIssueReaction {
|
|
|
|
actor: string;
|
|
|
|
actor_detail: IUserLite;
|
2023-07-27 13:25:03 +00:00
|
|
|
created_at: Date;
|
|
|
|
created_by: string;
|
2023-12-07 12:43:27 +00:00
|
|
|
id: string;
|
|
|
|
issue: string;
|
2023-07-27 13:25:03 +00:00
|
|
|
project: string;
|
2023-12-07 12:43:27 +00:00
|
|
|
reaction: string;
|
|
|
|
updated_at: Date;
|
|
|
|
updated_by: string;
|
2023-07-27 13:25:03 +00:00
|
|
|
workspace: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IssueReactionForm {
|
|
|
|
reaction: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IssueCommentReaction {
|
|
|
|
id: string;
|
|
|
|
created_at: Date;
|
|
|
|
updated_at: Date;
|
|
|
|
reaction: string;
|
|
|
|
created_by: string;
|
|
|
|
updated_by: string;
|
|
|
|
project: string;
|
|
|
|
workspace: string;
|
|
|
|
actor: string;
|
|
|
|
comment: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IssueCommentReactionForm {
|
|
|
|
reaction: string;
|
|
|
|
}
|