web-humas-fe/service/medol-news-update.ts

8 lines
384 B
TypeScript

import { mediahubGet } from "./http-config/axios-base-service";
export async function top5NewsMediahub() {
const headers = {
"content-type": "application/json",
};
return await mediahubGet(`/media/public/list?enablePage=1&sort=desc&sortBy=createdAt&size=5&page=0&typeId=1&title=&categoryId=&fileFormats=&tags=&group=&startDate=&endDate=&month=&year=`, headers);
}