update application page, table.
This commit is contained in:
@@ -10,11 +10,9 @@ export interface MediaDto {
|
||||
export interface ApplicationDto {
|
||||
id: string;
|
||||
user_id: string;
|
||||
// Sửa từ number thành string | number
|
||||
verify_type: string | number | string[] | number[];
|
||||
verify_type: string | number ;
|
||||
content: string;
|
||||
is_deleted: boolean;
|
||||
// Sửa status để nhận cả 1,2,3 hoặc PENDING, APPROVED...
|
||||
status: string | number;
|
||||
reviewed_by: string;
|
||||
review_note: string;
|
||||
@@ -32,7 +30,7 @@ export interface GetApplicationsParams {
|
||||
sort?: string;
|
||||
order?: "asc" | "desc";
|
||||
statuses?: string[];
|
||||
verify_types?: string[];
|
||||
verify_types?: string;
|
||||
created_from?: string;
|
||||
created_to?: string;
|
||||
reviewed_by?: string;
|
||||
|
||||
@@ -17,5 +17,5 @@ export interface MediaDto {
|
||||
|
||||
export interface payloadPresignedMedia {
|
||||
filename:string;
|
||||
contentType:string;
|
||||
content_type:string;
|
||||
}
|
||||
Reference in New Issue
Block a user