2024-12-07 19:53:34 +00:00
|
|
|
import { title } from "process";
|
|
|
|
|
import { httpGetInterceptor } from "../http-config/http-interceptor-service";
|
|
|
|
|
|
2025-09-10 13:39:49 +00:00
|
|
|
export async function ticketingPagination(title: string = '', size: number, page: number, mediaId: string) {
|
2024-12-07 19:53:34 +00:00
|
|
|
return await httpGetInterceptor(
|
2025-09-10 13:39:49 +00:00
|
|
|
`/ticketing/pagination?enablePage=1&page=${page}&size=${size}&title=${title}&typeId=${mediaId}`
|
2024-12-07 19:53:34 +00:00
|
|
|
);
|
|
|
|
|
}
|