manage submission page.
Build and Release / release (push) Successful in 29s

This commit is contained in:
2026-05-08 16:38:43 +07:00
parent 7ec7fda0b4
commit 35732fd50e
7 changed files with 859 additions and 4 deletions
+20
View File
@@ -0,0 +1,20 @@
export interface getSubmissionPayload {
created_from: string;
created_to: string;
limit: number;
order: "asc" | "desc";
page: number;
search: string;
sort: "id" | "status" | "created_at" | "reviewed_at";
project_id: string;
reviewed_by: string;
statuses: string[];
user_ids: string[];
}
export interface updateSubmissionPayload {
review_note: string;
status: string;
}