Files
Eventment/app/api/items.js
2019-08-06 01:36:08 -04:00

8 lines
291 B
JavaScript

import { API_ENDPOINTS, requestGet } from './index.js';
export const fetchItems = (eventId, auth) => {
const path = String(API_ENDPOINTS.GET_ITEMS).replace(/:event_id$/, eventId);
const opts = { Authorization: auth ? `Bearer ${auth}` : null };
return requestGet(path, null, opts);
};