frontend/src/api/gallery.api.ts (6 lines of code) (raw):

import axios from 'axios'; import { backendHostPort } from './environment'; export const getMediaAssetsRequest = ({ datasetId }: any): Promise<any> => { const url = `${backendHostPort}/api/media-assets/?dataset_id=${datasetId}`; return axios.get(url); };