Newer
Older
import axios from 'axios';
import { DriverShiftType } from 'types/DriverShiftType';
/**
* @async
* Perform GET to get a list of all the driverShifts.
* @returns a list of driverShifts.
*/
export const getDriverShiftList = async (): Promise<DriverShiftType[]> =>
axios(`/api/web/shifts/`).then((res) => res.data);